-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"name": "@clawplays/ospec-cli",
"version": "1.0.2",
"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": {
"postinstall": "node scripts/postinstall.js",
"prepack": "node scripts/strip-sourcemap-refs.js",
"index:rebuild": "node dist/tools/build-index.js",
"release:smoke": "node scripts/release-smoke.js",
"release:notes": "node scripts/release-notes.js",
"release:upload-notes": "node scripts/release-upload-notes.js",
"release:check": "npm pack --dry-run",
"release:publish": "npm publish --access public"
},
"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",
"LICENSE"
],
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0",
"semver": "^7.7.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.37",
"typescript": "5.9.3",
"vitest": "^4.1.2"
}
}