-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.21 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@seamapi/cli",
"version": "0.7.0",
"description": "A command line interface (CLI) for interacting with the Seam API.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./cli": {
"import": {
"types": "./bin/cli.d.ts",
"default": "./bin/cli.js"
}
}
},
"module": "index.js",
"bin": {
"seam": "./bin/cli.js"
},
"sideEffects": [
"./bin/cli.js",
"./src/bin/cli.ts"
],
"keywords": [
"cli",
"node",
"seam"
],
"homepage": "https://github.com/seamapi/cli",
"bugs": "https://github.com/seamapi/cli/issues",
"repository": "seamapi/cli",
"license": "MIT",
"author": {
"name": "Seam Labs, Inc.",
"email": "devops@getseam.com"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"bin",
"lib",
"src",
"!test",
"!**/*.test.ts"
],
"scripts": {
"build": "npm run build:entrypoints",
"prebuild": "tsx src/index.ts",
"postbuild": "concurrently --raw --group 'node ./index.js' 'node ./bin/cli.js --version'",
"build:entrypoints": "npm run build:ts",
"build:ts": "tsc --project tsconfig.build.json",
"prebuild:ts": "del 'index.*' bin lib",
"postbuild:ts": "tsc-alias --project tsconfig.build.json",
"typecheck": "tsc",
"test": "vitest run --coverage",
"pretest": "tsx src/index.ts",
"test:update": "vitest run --update",
"test:watch": "vitest",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"lint": "eslint .",
"postlint": "prettier --check --ignore-path .gitignore .",
"prepack": "tsx ./prepack.ts",
"postversion": "git push --follow-tags",
"seam": "tsx src/bin/cli.ts",
"inspect": "tsx --inspect src/bin/cli.ts",
"format": "prettier --write --ignore-path .gitignore .",
"preformat": "eslint --fix .",
"report": "vitest run --coverage"
},
"engines": {
"node": ">=22.11.0",
"npm": ">=10.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.11.0 || ^22.11.0"
},
"packageManager": {
"name": "npm",
"version": "^11.0.0 || ^10.0.0"
}
},
"dependencies": {
"@seamapi/blueprint": "^1.1.0",
"@seamapi/http": "2.2.0",
"@seamapi/wizard": "0.5.2",
"chalk": "^6.0.0",
"command-line-usage": "^7.0.4",
"configstore": "^8.0.0",
"minimist": "^1.2.8",
"nanospinner": "^1.2.2",
"open": "^11.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@seamapi/types": "1.985.0",
"@types/command-line-usage": "^5.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^24.10.9",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^4.1.10",
"concurrently": "^10.0.4",
"del-cli": "^7.0.0",
"eslint": "^9.31.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"execa": "^10.0.0",
"jiti": "^2.4.2",
"neostandard": "^0.13.0",
"prettier": "^3.0.0",
"react-devtools-core": "^7.0.1",
"tsc-alias": "^1.8.2",
"tsx": "^4.6.2",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}