-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.16 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.16 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
{
"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/*",
"workers/*",
"packages/*",
"infrastructure/*",
"tools/*"
],
"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 run --recursive test",
"test:unit": "pnpm run --recursive test:unit",
"test:integration": "pnpm run --recursive test:integration",
"test:coverage": "pnpm run --recursive test:coverage",
"test:property": "pnpm run --recursive test:property",
"test:e2e": "pnpm run --recursive test:e2e",
"test:smoke": "pnpm run --recursive test:smoke",
"test:health": "pnpm run --recursive test:health",
"build": "pnpm run --recursive build",
"build:clean": "pnpm clean && pnpm build",
"build:docker": "docker-compose build",
"lint": "pnpm run --recursive lint",
"lint:fix": "pnpm run --recursive lint:fix",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md,yml,yaml}\"",
"type-check": "pnpm run --recursive type-check",
"security:scan": "pnpm run --recursive security:scan",
"security:audit": "pnpm audit && cargo audit && go list -json -deps ./... | jq -r '.[] | select(.Vulnerabilities != null) | .Path'",
"clean": "pnpm run --recursive clean",
"deploy:staging": "pnpm build && docker-compose -f docker-compose.staging.yml up -d",
"deploy:prod": "pnpm build && docker-compose -f docker-compose.prod.yml up -d",
"docs:build": "mkdocs build",
"docs:serve": "mkdocs serve",
"release": "semantic-release",
"prepare": "husky install"
},
"devDependencies": {
"@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/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",
"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"
}