-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.03 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.03 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": "@clawplays/ospec-cli",
"version": "0.3.10",
"description": "Official OSpec CLI package for spec-driven development (SDD) and document-driven development in AI coding agent and CLI workflows.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ospec": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && node scripts/strip-sourcemap-refs.js",
"dev": "node scripts/dev-watch.js",
"postinstall": "node scripts/postinstall.js",
"prepack": "node scripts/strip-sourcemap-refs.js",
"test": "vitest",
"test:run": "vitest --run",
"lint": "eslint src tests --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"index:rebuild": "node dist/tools/build-index.js",
"validate": "node dist/cli/commands/validate.js",
"release:cut": "node scripts/release-cut.js",
"release:cut:patch": "node scripts/release-cut.js patch",
"release:cut:minor": "node scripts/release-cut.js minor",
"release:cut:major": "node scripts/release-cut.js major",
"release:smoke": "node scripts/release-smoke.js",
"release:notes": "node scripts/release-notes.js",
"release:upload-notes": "node scripts/release-upload-notes.js",
"release:sync-version": "node scripts/sync-version.js",
"release:bump:patch": "npm version patch --no-git-tag-version",
"release:bump:minor": "npm version minor --no-git-tag-version",
"release:bump:major": "npm version major --no-git-tag-version",
"release:check": "npm pack --dry-run",
"release:publish": "npm publish --access public",
"version": "npm run release:sync-version"
},
"keywords": [
"ospec",
"ospec-cli",
"spec-driven development",
"sdd",
"document-driven development",
"ai coding agents",
"cli workflows"
],
"author": "clawplays <ai@clawplays.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/clawplays/ospec.git"
},
"homepage": "https://ospec.ai/",
"bugs": {
"url": "https://github.com/clawplays/ospec/issues"
},
"files": [
"dist/**",
"assets/**",
"agents/openai.yaml",
"scripts/postinstall.js",
".ospec/templates/hooks/**",
"SKILL.md",
"skill.yaml",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"license": "MIT",
"dependencies": {
"body-parser": "^2.2.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"cors": "^2.8.6",
"express": "^4.22.1",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"open": "^9.1.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.58.2",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^4.1.2"
}
}