forked from Fission-AI/OpenSpec
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.45 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
{
"name": "@studyzy/openspec-cn",
"version": "1.8.0",
"description": "面向AI编程助手的规范驱动开发框架OpenSpec的简体中文汉化版本",
"keywords": [
"openspec",
"openspec-cn",
"specs",
"sdd",
"cli",
"ai",
"development"
],
"homepage": "https://github.com/studyzy/OpenSpec-cn",
"repository": {
"type": "git",
"url": "https://github.com/studyzy/OpenSpec-cn"
},
"license": "MIT",
"author": "OpenSpec Contributors",
"type": "module",
"packageManager": "pnpm@9.15.9",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"openspec-cn": "./bin/openspec.js"
},
"files": [
"dist",
"bin",
"schemas",
"scripts/postinstall.js",
"!dist/**/*.test.js",
"!dist/**/__tests__",
"!dist/**/*.map"
],
"scripts": {
"lint": "eslint src/",
"build": "node build.js",
"generate:skills": "node scripts/generate-skillssh.mjs",
"regen:parity-hashes": "node scripts/regen-parity-hashes.mjs",
"dev": "tsc --watch",
"dev:cli": "pnpm build && node bin/openspec.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:postinstall": "node scripts/postinstall.js",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run build",
"postinstall": "node scripts/postinstall.js",
"check:pack-version": "node scripts/pack-version-check.mjs",
"release": "pnpm run release:ci",
"release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
"changeset": "changeset"
},
"engines": {
"node": ">=20.19.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@types/node": "^20.19.43",
"@vitest/ui": "^3.2.6",
"eslint": "^10.5.0",
"smol-toml": "^1.7.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^3.2.6"
},
"dependencies": {
"@inquirer/core": "^10.3.2",
"@inquirer/prompts": "^7.10.1",
"chalk": "^5.6.2",
"commander": "^14.0.0",
"cross-spawn": "7.0.6",
"fast-glob": "^3.3.3",
"ora": "^9.4.1",
"yaml": "^2.8.3",
"zod": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"brace-expansion@<=5.0.8": ">=5.0.9 <6",
"postcss@<8.5.23": ">=8.5.23 <9"
}
}
}