-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.6 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "seam-cli",
"module": "index.ts",
"type": "module",
"version": "0.0.60",
"repository": "[email protected]:seamapi/seam-cli.git",
"scripts": {
"cli": "tsx ./cli.ts",
"build": "tsup",
"postbuild": "ncc build ./dist/cli.cjs -o ./bin && mv ./bin/index.cjs ./bin/seam.cjs",
"build:binaries": "pkg -t node18-macos-arm64,node18-win-x64,node18-linux-x64,node18-macos-x64 --out-path bin ./bin/seam.cjs",
"build:binaries:mac": "pkg --out-path bin -t node18-macos-arm64 ./bin/seam.cjs",
"format": "prettier --write --ignore-path .gitignore .",
"typecheck": "tsc --noEmit"
},
"bin": {
"seam": "./dist/cli.cjs"
},
"tsup": {
"entry": [
"cli.ts"
],
"format": [
"cjs"
],
"sourcemap": true
},
"devDependencies": {
"@swc/core": "^1.3.100",
"@types/command-line-usage": "^5.0.4",
"@types/configstore": "^6.0.2",
"@types/lodash": "^4.14.202",
"@types/minimist": "^1.2.5",
"@types/ms": "^0.7.34",
"@types/openapi-v3": "^3.0.0",
"@types/prompts": "^2.4.9",
"@vercel/ncc": "^0.38.1",
"axios": "^1.6.2",
"bun-types": "latest",
"chalk": "^5.3.0",
"command-line-usage": "^7.0.1",
"configstore": "^6.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"openapi-types": "^12.1.3",
"pkg": "^5.8.1",
"prettier": "^3.1.1",
"prompts": "^2.4.2",
"tsup": "^8.0.1",
"tsx": "^4.6.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@seamapi/http": "^0.34.1",
"@seamapi/types": "^1.302.2",
"open": "^10.0.3",
"swagger-parser": "^10.0.3"
}
}