-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.51 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.51 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "piratebao",
"version": "1.0.0",
"description": "Pirate dumpling kraken-compressed agent mode with TypeScript hooks, compressor, validators, and .bao manifest checks.",
"type": "module",
"license": "MIT",
"author": "PirateBao contributors",
"homepage": "https://github.com/d4551/piratebao#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/d4551/piratebao.git"
},
"bugs": {
"url": "https://github.com/d4551/piratebao/issues"
},
"keywords": [
"agent",
"ai",
"claude-code",
"codex",
"compression",
"prompt",
"typescript"
],
"packageManager": "bun@1.3.12",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks/raiseJollyRoger.d.ts",
"import": "./dist/hooks/raiseJollyRoger.js"
},
"./dumpling": {
"types": "./dist/dumpling/stuffDumpling.d.ts",
"import": "./dist/dumpling/stuffDumpling.js"
},
"./shipyard": {
"types": "./dist/shipyard/verifyHarbor.d.ts",
"import": "./dist/shipyard/verifyHarbor.js"
}
},
"files": [
".claude-plugin",
".codex",
".agents",
".opencode",
".cursor",
".windsurf",
".clinerules",
".github/copilot-instructions.md",
"BAO-MANIFEST-SPEC.md",
"LICENSE",
"README.md",
"AGENTS.md",
"GEMINI.md",
"bao",
"commands",
"dist",
"docs",
"hooks",
"opencode.json",
"piratebao",
"piratebao-compress",
"piratebao.skill",
"plugins",
"rules",
"schemas",
"skills"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"sideEffects": false,
"engines": {
"node": ">=24.11.0"
},
"bin": {
"piratebao-compress": "dist/dumpling/piratebaoCompress.js",
"piratebao-pack": "dist/shipyard/packSkillCargo.js",
"piratebao-registry": "dist/shipyard/checkNpmRegistry.js",
"piratebao-sync": "dist/shipyard/syncTreasureMap.js",
"piratebao-verify": "dist/shipyard/verifyHarbor.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit",
"test": "tsc -p tsconfig.json && node dist/shipyard/packSkillCargo.js && vitest run",
"verify": "tsc -p tsconfig.json && node dist/shipyard/syncTreasureMap.js --check && node dist/shipyard/packSkillCargo.js && node dist/shipyard/verifyHarbor.js && node dist/shipyard/checkNpmRegistry.js && npm pack --dry-run --json",
"pack:skill": "tsc -p tsconfig.json && node dist/shipyard/packSkillCargo.js",
"pack:dry": "npm pack --dry-run --json",
"registry:check": "tsc -p tsconfig.json && node dist/shipyard/checkNpmRegistry.js",
"sync": "tsc -p tsconfig.json && node dist/shipyard/syncTreasureMap.js",
"check": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit && tsc -p tsconfig.json && node dist/shipyard/packSkillCargo.js && vitest run && node dist/shipyard/syncTreasureMap.js --check && node dist/shipyard/verifyHarbor.js && node dist/shipyard/checkNpmRegistry.js && npm pack --dry-run --json",
"prepack": "tsc -p tsconfig.json && node dist/shipyard/packSkillCargo.js",
"prepublishOnly": "bun run check"
},
"dependencies": {
"@anthropic-ai/sdk": "0.88.0",
"ajv": "8.18.0",
"js-tiktoken": "1.0.21"
},
"devDependencies": {
"@types/node": "25.6.0",
"prettier": "3.8.2",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vitest": "4.1.4"
}
}