-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 972 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 972 Bytes
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
{
"name": "@stringsync/spec",
"description": "spec driven development tools",
"version": "0.5.0",
"private": false,
"type": "module",
"main": "./dist/index.js",
"bin": {
"spec": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun scripts/build.ts",
"release": "bun scripts/release.ts",
"dev": "chokidar '**/*.ts' --command 'bun scripts/build.ts' --ignore '**/node_modules/**' --silent --initial",
"setup": "bun link",
"teardown": "bun unlink"
},
"devDependencies": {
"@eslint/js": "9.32.0",
"@types/bun": "1.2.21",
"@types/minimatch": "^6.0.0",
"chokidar-cli": "3.0.0",
"eslint": "9.32.0",
"prettier": "3.6.2",
"typescript": "5.9.2",
"typescript-eslint": "8.38.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.5",
"chalk": "5.6.2",
"commander": "14.0.0",
"glob": "^11.0.3",
"zod": "^3.25.76"
}
}