-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.13 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.13 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
{
"name": "code-stick",
"version": "0.1.2",
"description": "Portable AI coding agent on a USB drive — opencode + Ollama, install once, run on Windows / macOS / Linux",
"type": "module",
"bin": {
"code-stick": "./dist/cli.js"
},
"files": [
"dist/",
"templates/",
"scripts/"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node scripts/smoke.mjs",
"smoke:docker": "docker build -f scripts/smoke.Dockerfile -t code-stick-smoke . && docker run --rm code-stick-smoke",
"hashes": "node scripts/compute-hashes.mjs",
"hashes:check": "node scripts/check-catalog-hashes.mjs",
"hashes:bump": "node scripts/check-catalog-hashes.mjs --write",
"prepublishOnly": "npm run build && node scripts/verify-publish.mjs"
},
"engines": {
"node": ">=20"
},
"keywords": [
"ai",
"coding-agent",
"opencode",
"portable",
"usb",
"offline",
"airgapped",
"ollama",
"local-llm",
"byo-model",
"self-hosted",
"privacy"
],
"author": {
"name": "Muhammad Usman",
"url": "https://github.com/MuhammadUsmanGM"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MuhammadUsmanGM/code-stick.git"
},
"bugs": {
"url": "https://github.com/MuhammadUsmanGM/code-stick/issues"
},
"homepage": "https://github.com/MuhammadUsmanGM/code-stick#readme",
"dependencies": {
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"ejs": "^3.1.10",
"extract-zip": "^2.0.1",
"got": "^14.4.1",
"hasha": "^6.0.0",
"inquirer": "^9.2.23",
"tar": "^7.4.0",
"tree-kill": "^1.2.2"
},
"optionalDependencies": {
"drivelist": "^12.0.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/ejs": "^3.1.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.0",
"@types/tar": "^6.1.13",
"tsup": "^8.1.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}