-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 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
{
"name": "opkg",
"version": "0.11.1",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"author": "Eric Lee",
"homepage": "https://openpackage.dev",
"repository": {
"type": "git",
"url": "https://github.com/enulus/openpackage.git"
},
"description": "OpenPackage is the package manager for AI coding.",
"keywords": [
"openpackage",
"cli",
"ai",
"coding",
"open",
"package",
"manager",
"rules",
"commands",
"agents",
"skills",
"opkg",
"opm"
],
"main": "packages/cli/dist/index.js",
"type": "module",
"bin": {
"opkg": "./bin/openpackage",
"openpackage": "./bin/openpackage"
},
"scripts": {
"build": "node scripts/build.mjs",
"build:core": "npm run build -w packages/core",
"build:cli": "npm run build -w packages/cli",
"build:check": "tsc --noEmit -p packages/core/tsconfig.json && tsc --noEmit -p packages/cli/tsconfig.json",
"start": "node packages/cli/dist/index.js",
"clean": "npm run clean -w packages/core && npm run clean -w packages/cli",
"prepublishOnly": "npm run build",
"test": "TS_NODE_TRANSPILE_ONLY=1 node --loader ts-node/esm tests/run-tests.ts"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"commander": "^14.0.0",
"fast-fuzzy": "^1.12.0",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"hash-wasm": "^4.12.0",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.3.1",
"jsonpath-plus": "^10.3.0",
"junk": "^4.0.1",
"minimatch": "^10.1.1",
"nanoid": "^5.0.7",
"ora": "^9.3.0",
"prompts": "^2.4.2",
"semver": "^7.7.2",
"smol-toml": "^1.6.0",
"tar": "^7.5.9"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/js-yaml": "^4.0.9",
"@types/jsonpath-plus": "^5.0.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^24.3.1",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"@types/tar": "^6.1.0",
"esbuild": "^0.25.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}