-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.44 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
{
"name": "@oevery/rsp",
"type": "module",
"version": "3.2.0",
"description": "RSP (Reliable Software Practice), a repository-native engineering workflow for humans and AI agents",
"author": "oevery",
"license": "MIT",
"homepage": "https://github.com/oevery/rsp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/oevery/rsp.git"
},
"bugs": "https://github.com/oevery/rsp/issues",
"keywords": [
"rsp",
"reliable-software-practice",
"repository-native",
"engineering-workflow",
"rules",
"specs",
"plans",
"ai",
"coding",
"workflow"
],
"bin": {
"rsp": "bin/rsp.mjs"
},
"files": [
"bin/",
"dist/",
"rules/",
"skills/"
],
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "pnpm run build",
"release:check": "pnpm run release:metadata-check && pnpm run docs:check && pnpm run docs:build && pnpm run build && pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run release:package-check",
"release:candidate-check": "node scripts/release-candidate-check.mjs && pnpm run skills:security-check && pnpm run release:check",
"release:metadata-check": "node scripts/release-metadata-check.mjs",
"release:package-check": "node scripts/clean-install-check.mjs",
"skills:security-check": "node scripts/skill-security-preflight.mjs --suppressions skill-security-suppressions.json",
"prepublishOnly": "pnpm run release:candidate-check",
"build": "tsup",
"dev": "tsup --watch",
"docs:build": "vitepress build docs",
"docs:check": "node scripts/docs-check.mjs",
"docs:deploy": "wrangler deploy",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"citty": "^0.2.2",
"ink": "~7.1.1",
"mdast-util-from-markdown": "2.0.3",
"mdast-util-gfm": "3.1.0",
"micromark-extension-gfm": "3.0.0",
"picocolors": "^1.1.1",
"react": "~19.2.8",
"yaml": "^2.9.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.2.0",
"@types/mdast": "4.0.4",
"@types/node": "^22.20.1",
"@types/react": "19.2.17",
"eslint": "^10.8.0",
"ink-testing-library": "4.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^4.1.10",
"wrangler": "^4.114.0"
}
}