dino-spec 17.7.0 → 17.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/dino-hud.js +0 -0
- package/bin/dino.js +0 -0
- package/package.json +79 -77
package/bin/dino-hud.js
CHANGED
|
File without changes
|
package/bin/dino.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,77 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dino-spec",
|
|
3
|
-
"version": "17.
|
|
4
|
-
"description": "Automatic context engineering for Claude Code",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"default": "./dist/index.js"
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
"bin": {
|
|
13
|
-
"dino": "./bin/dino.js",
|
|
14
|
-
"dino-hud": "./bin/dino-hud.js"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist",
|
|
18
|
-
"bin"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "bun build.js",
|
|
22
|
-
"build:binary": "bun build-binary.js",
|
|
23
|
-
"dev": "bun --watch bin/dino.js",
|
|
24
|
-
"dev:cli": "bun run build && bun bin/dino.js",
|
|
25
|
-
"lint": "eslint src/",
|
|
26
|
-
"lint:biome": "bunx @biomejs/biome check src/",
|
|
27
|
-
"lint:biome:fix": "bunx @biomejs/biome check --write --unsafe src/",
|
|
28
|
-
"format": "bunx @biomejs/biome format --write src/",
|
|
29
|
-
"test": "bun run vitest run",
|
|
30
|
-
"test:unit": "bun run vitest run --project=unit",
|
|
31
|
-
"test:integration": "bun run vitest run --project=integration",
|
|
32
|
-
"test:watch": "bun run vitest",
|
|
33
|
-
"docs:tools": "bun scripts/generate-tool-docs.ts"
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "dino-spec",
|
|
3
|
+
"version": "17.8.0",
|
|
4
|
+
"description": "Automatic context engineering for Claude Code",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"default": "./dist/index.js"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"dino": "./bin/dino.js",
|
|
14
|
+
"dino-hud": "./bin/dino-hud.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"bin"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "bun build.js",
|
|
22
|
+
"build:binary": "bun build-binary.js",
|
|
23
|
+
"dev": "bun --watch bin/dino.js",
|
|
24
|
+
"dev:cli": "bun run build && bun bin/dino.js",
|
|
25
|
+
"lint": "eslint src/",
|
|
26
|
+
"lint:biome": "bunx @biomejs/biome check src/",
|
|
27
|
+
"lint:biome:fix": "bunx @biomejs/biome check --write --unsafe src/",
|
|
28
|
+
"format": "bunx @biomejs/biome format --write src/",
|
|
29
|
+
"test": "bun run vitest run",
|
|
30
|
+
"test:unit": "bun run vitest run --project=unit",
|
|
31
|
+
"test:integration": "bun run vitest run --project=integration",
|
|
32
|
+
"test:watch": "bun run vitest",
|
|
33
|
+
"docs:tools": "bun scripts/generate-tool-docs.ts",
|
|
34
|
+
"prepare": "bun run build",
|
|
35
|
+
"prepublishOnly": "bun run build"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"bun": ">=1.0.0"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@inquirer/prompts": "^8.2.0",
|
|
42
|
+
"chalk": "^5.4.1",
|
|
43
|
+
"commander": "^13.1.0",
|
|
44
|
+
"fast-glob": "^3.3.3",
|
|
45
|
+
"ora": "^8.1.1",
|
|
46
|
+
"typescript": "^5.9.3",
|
|
47
|
+
"yaml": "^2.7.0",
|
|
48
|
+
"zod": "^3.24.1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/bun": "^1.3.6",
|
|
52
|
+
"@types/node": "^22.10.5",
|
|
53
|
+
"memfs": "^4.56.10",
|
|
54
|
+
"vitest": "^2.1.8"
|
|
55
|
+
},
|
|
56
|
+
"keywords": [
|
|
57
|
+
"claude",
|
|
58
|
+
"claude-code",
|
|
59
|
+
"specs",
|
|
60
|
+
"workflow",
|
|
61
|
+
"cli",
|
|
62
|
+
"ai",
|
|
63
|
+
"development",
|
|
64
|
+
"specification"
|
|
65
|
+
],
|
|
66
|
+
"author": "keenu",
|
|
67
|
+
"license": "MIT",
|
|
68
|
+
"repository": {
|
|
69
|
+
"type": "git",
|
|
70
|
+
"url": "git+https://github.com/xullul/dino.git"
|
|
71
|
+
},
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/xullul/dino/issues"
|
|
74
|
+
},
|
|
75
|
+
"homepage": "https://github.com/xullul/dino#readme",
|
|
76
|
+
"publishConfig": {
|
|
77
|
+
"access": "public"
|
|
78
|
+
}
|
|
79
|
+
}
|