-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1015 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@oxide/api",
"version": "0.4.1",
"description": "TypeScript client for the Oxide API",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "./dist/Api.js",
"exports": {
"import": "./dist/Api.js",
"require": "./dist/Api.cjs"
},
"scripts": {
"build": "tsup --dts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxidecomputer/oxide.ts.git"
},
"keywords": [
"oxide",
"oxide.ts",
"oxide sdk"
],
"author": "Oxide Computer Company",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/oxidecomputer/oxide.ts/issues"
},
"homepage": "https://github.com/oxidecomputer/oxide.ts#readme",
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"tsup": {
"clean": true,
"entry": [
"src/Api.ts"
],
"format": [
"cjs",
"esm"
]
}
}