-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "specsync",
"version": "1.0.0",
"description": "A GitHub-native, frictionless specification system",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"demo": "node dist/demo.js",
"ui-demo": "node dist/ui-demo.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.9.1",
"@octokit/rest": "^20.0.1",
"@octokit/webhooks": "^12.0.8",
"@slack/web-api": "^6.8.1",
"diff": "^5.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"openai": "^4.20.1",
"pino": "^9.6.0",
"probot": "^13.0.0",
"simple-git": "^3.22.0",
"tree-sitter": "^0.20.6",
"tree-sitter-java": "^0.20.2",
"tree-sitter-javascript": "^0.20.2",
"tree-sitter-python": "^0.20.4",
"tree-sitter-rust": "^0.20.3",
"tree-sitter-typescript": "^0.20.3"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/diff": "^5.2.3",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^17.5.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"github-app",
"specification",
"formal-verification",
"lean4",
"ast-parsing",
"diff-analysis"
],
"author": "SpecSync Team",
"license": "MIT"
}