-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.92 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
{
"name": "speccursor",
"version": "0.1.0",
"description": "Autonomous dependency upgrades, AI-powered regression patches, and formal verification using Lean 4.20.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:up": "docker-compose up -d && pnpm run --parallel dev",
"dev:down": "docker-compose down && pnpm run --parallel dev:stop",
"dev:logs": "docker-compose logs -f",
"dev:clean": "docker-compose down -v && pnpm clean",
"test": "pnpm -r --if-present run test",
"test:unit": "pnpm -r --if-present run test:unit",
"test:integration": "pnpm -r --if-present run test:integration",
"test:coverage": "pnpm -r --if-present run test:coverage",
"test:property": "pnpm -r --if-present run test:property",
"test:e2e": "pnpm -r --if-present run test:e2e",
"test:smoke": "pnpm -r --if-present run test:smoke",
"test:health": "pnpm -r --if-present run test:health",
"build": "pnpm -r --if-present run build",
"build:clean": "pnpm clean && pnpm build",
"build:docker": "docker-compose build",
"lint": "pnpm -r --if-present run lint",
"lint:fix": "pnpm -r --if-present run lint:fix",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md,yml,yaml}\"",
"type-check": "pnpm -r --if-present run type-check",
"security:scan": "pnpm audit --audit-level moderate && node scripts/security-audit.mjs",
"security:audit": "pnpm audit --audit-level moderate && node scripts/security-audit.mjs",
"clean": "pnpm -r --if-present run clean",
"deploy:staging": "node scripts/deploy.mjs staging",
"deploy:prod": "node scripts/deploy.mjs prod",
"deploy:staging:down": "node scripts/deploy.mjs staging --down",
"deploy:prod:down": "node scripts/deploy.mjs prod --down",
"k8s:up": "node scripts/local-k8s.mjs up",
"k8s:down": "node scripts/local-k8s.mjs down",
"k8s:deploy": "node scripts/local-k8s.mjs deploy",
"k8s:status": "node scripts/local-k8s.mjs status",
"k8s:chaos": "node scripts/local-k8s.mjs apply-chaos",
"k8s:chaos-mesh": "node scripts/local-k8s.mjs chaos-mesh",
"ai-patch": "tsx scripts/ai-patch.ts",
"docs:build": "echo 'Docs are markdown under docs/; no mkdocs site configured'",
"docs:serve": "echo 'Open docs/ locally; mkdocs is not required'",
"verify": "node verify-implementation.js",
"release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"diff": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.2.0",
"@semantic-release/npm": "^10.0.0",
"@types/diff": "^5.0.9",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"semantic-release": "^22.0.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"repository": {
"type": "git",
"url": "https://github.com/speccursor/speccursor.git"
},
"keywords": [
"github-app",
"dependency-upgrades",
"ai-patching",
"formal-verification",
"lean",
"claude",
"rust",
"typescript",
"microservices"
],
"author": "SpecCursor Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/speccursor/speccursor/issues"
},
"homepage": "https://github.com/speccursor/speccursor#readme"
}