-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.5 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 4.5 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"author": "Jason Williscroft",
"auto-changelog": {
"output": "CHANGELOG.md",
"unreleased": true,
"commitLimit": false,
"hideCredit": true
},
"bin": {
"stan": "./dist/cli/stan.js"
},
"bugs": {
"url": "https://github.com/karmaniverous/stan-cli/issues"
},
"dependencies": {
"@karmaniverous/stan-context": "^0.6.0",
"@karmaniverous/stan-core": "^0.10.1",
"@vitest/eslint-plugin": "^1.6.6",
"chalk": "^5.6.2",
"clipboardy": "^5.1.0",
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.3",
"inquirer": "^13.2.2",
"package-directory": "^8.1.0",
"signal-exit": "^4.1.0",
"table": "^6.9.0",
"tree-kill": "^1.2.2",
"typescript": "^5.9.3",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"description": "STAN is a CLI that bridges your IDE with your favorite LLM and drives a rapid, powerful, low-friction, design-first iterative development process. Real-world AI-assisted development for professional engineers!",
"devDependencies": {
"@dotenvx/dotenvx": "^1.52.0",
"@eslint/js": "^9.39.2",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.1.0",
"@vitest/coverage-v8": "^4.0.18",
"auto-changelog": "^2.5.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.5.0",
"happy-dom": "^20.4.0",
"jsonc-eslint-parser": "^2.4.2",
"knip": "^5.82.1",
"lefthook": "^2.0.16",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"rimraf": "^6.1.2",
"rollup": "^4.57.0",
"rollup-plugin-dts": "^6.3.0",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.16",
"typedoc-plugin-mdn-links": "^5.1.1",
"typedoc-plugin-replace-text": "^4.2.0",
"typedoc-plugin-zod": "^1.4.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/karmaniverous/stan-cli#readme",
"keywords": [
"ai",
"ai-assisted",
"ai-assisted-development",
"cli",
"snapshot",
"archive",
"tar",
"unified-diff",
"patch",
"code-review",
"context",
"typescript",
"typedoc",
"eslint",
"prettier",
"rollup",
"vitest"
],
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "@karmaniverous/stan-cli",
"publishConfig": {
"access": "public"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
"commitMessage": "chore: release v${version}",
"requireBranch": "main"
},
"github": {
"release": true
},
"hooks": {
"after:init": [
"npm run lint",
"npm run test",
"npm run knip",
"npm run build"
],
"before:npm:release": [
"npx auto-changelog -p",
"npm run docs",
"git add -A"
],
"after:release": [
"git switch -c release/${version}",
"git push -u origin release/${version}",
"git switch ${branchName}"
]
},
"npm": {
"publish": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/karmaniverous/stan-cli.git"
},
"scripts": {
"build": "rimraf dist .rollup.cache .tsbuildinfo && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"changelog": "auto-changelog",
"docs": "typedoc",
"knip": "knip",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix .",
"release": "dotenvx run -f .env.local -- release-it",
"release:pre": "npm run release -- --no-git.requireBranch --github.prerelease --preRelease",
"relink": "npm uninstall -g @karmaniverous/stan-cli && npm run build && npm link",
"stan": "tsx src/cli/bin/stan.ts",
"test": "vitest --run --silent",
"typecheck": "tsc"
},
"type": "module",
"types": "dist/types/index.d.ts",
"version": "0.14.0"
}