smash-os-install 0.4.2 → 0.4.6
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/install.mjs +252 -131
- package/package.json +64 -58
- package/templates.mjs +3954 -1028
package/package.json
CHANGED
|
@@ -1,58 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "smash-os-install",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "Install the SmashOS local AI workflow harness into any repo — no web app, no API keys required",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"smash-os-install": "install.mjs"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"install.mjs",
|
|
11
|
-
"templates.mjs"
|
|
12
|
-
],
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "https://github.com/MrShifu01/SmashOS"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"smash-os",
|
|
19
|
-
"ai-workflow",
|
|
20
|
-
"claude-code",
|
|
21
|
-
"harness",
|
|
22
|
-
"local-first",
|
|
23
|
-
"ai-roles",
|
|
24
|
-
"pipeline-orchestration",
|
|
25
|
-
"ai-agent"
|
|
26
|
-
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"test": "vitest run",
|
|
29
|
-
"test:watch": "vitest",
|
|
30
|
-
"test:coverage": "vitest run --coverage",
|
|
31
|
-
"prepublishOnly": "npm test"
|
|
32
|
-
},
|
|
33
|
-
"license": "MIT",
|
|
34
|
-
"engines": {
|
|
35
|
-
"node": ">=18"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"chalk": "^5.4.1",
|
|
39
|
-
"prompts": "^2.4.2"
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@vitest/coverage-v8": "^4.1.2",
|
|
43
|
-
"vitest": "^4.1.2"
|
|
44
|
-
},
|
|
45
|
-
"vitest": {
|
|
46
|
-
"coverage": {
|
|
47
|
-
"provider": "v8",
|
|
48
|
-
"reporter": [
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "smash-os-install",
|
|
3
|
+
"version": "0.4.6",
|
|
4
|
+
"description": "Install the SmashOS local AI workflow harness into any repo — no web app, no API keys required",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"smash-os-install": "install.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"install.mjs",
|
|
11
|
+
"templates.mjs"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/MrShifu01/SmashOS.git"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"smash-os",
|
|
19
|
+
"ai-workflow",
|
|
20
|
+
"claude-code",
|
|
21
|
+
"harness",
|
|
22
|
+
"local-first",
|
|
23
|
+
"ai-roles",
|
|
24
|
+
"pipeline-orchestration",
|
|
25
|
+
"ai-agent"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest",
|
|
30
|
+
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"prepublishOnly": "npm test"
|
|
32
|
+
},
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"chalk": "^5.4.1",
|
|
39
|
+
"prompts": "^2.4.2"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
43
|
+
"vitest": "^4.1.2"
|
|
44
|
+
},
|
|
45
|
+
"vitest": {
|
|
46
|
+
"coverage": {
|
|
47
|
+
"provider": "v8",
|
|
48
|
+
"reporter": [
|
|
49
|
+
"text",
|
|
50
|
+
"lcov"
|
|
51
|
+
],
|
|
52
|
+
"include": [
|
|
53
|
+
"install.mjs",
|
|
54
|
+
"templates.mjs"
|
|
55
|
+
],
|
|
56
|
+
"thresholds": {
|
|
57
|
+
"lines": 80,
|
|
58
|
+
"statements": 80,
|
|
59
|
+
"branches": 45,
|
|
60
|
+
"functions": 60
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|