-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.02 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.02 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
{
"name": "@treeseed/cli",
"version": "0.6.39",
"description": "Operator-facing Treeseed CLI package.",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/treeseed-ai/cli.git",
"directory": "."
},
"homepage": "https://treeseed.ai",
"bugs": {
"url": "https://github.com/treeseed-ai/cli/issues"
},
"packageManager": "npm@11.7.0",
"type": "module",
"engines": {
"node": ">=22"
},
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist",
"scripts/verify-driver.mjs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "npm install",
"setup:ci": "npm ci",
"build": "npm run build:dist",
"lint": "npm run build:dist",
"test": "npm run build:dist && node --test --test-concurrency=1 ./scripts/treeseed-help.test.mjs ./scripts/wrapper-package.test.mjs",
"build:dist": "node ./scripts/run-ts.mjs ./scripts/build-dist.ts",
"prepare": "node ./scripts/prepare.mjs",
"prepack": "npm run build:dist",
"verify:direct": "npm run release:verify",
"verify:local": "node --input-type=module -e \"process.env.TREESEED_VERIFY_DRIVER='direct'; await import('./scripts/verify-driver.mjs')\"",
"verify:action": "node --input-type=module -e \"process.env.TREESEED_VERIFY_DRIVER='act'; await import('./scripts/verify-driver.mjs')\"",
"verify": "node --input-type=module -e \"await import('./scripts/verify-driver.mjs')\"",
"release:setup": "npm run setup:ci",
"release:check-tag": "node ./scripts/run-ts.mjs ./scripts/assert-release-tag-version.ts",
"release:verify": "node ./scripts/run-ts.mjs ./scripts/release-verify.ts",
"release:publish": "node ./scripts/run-ts.mjs ./scripts/publish-package.ts"
},
"dependencies": {
"@treeseed/sdk": "0.6.43",
"ink": "^7.0.0",
"react": "^19.2.5"
},
"devDependencies": {
"@types/node": "^24.6.0",
"esbuild": "^0.25.10",
"typescript": "^5.9.3"
},
"bin": {
"treeseed": "./dist/cli/main.js",
"trsd": "./dist/cli/main.js"
}
}