-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.48 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
{
"name": "attic-claude",
"version": "1.6.0",
"private": true,
"description": "Attic: a Claude Code plugin that offloads context into .attic/",
"license": "MIT",
"scripts": {
"test": "node --test",
"attic:serve": "node extension/server/server.js",
"attic:pair": "node extension/server/server.js --pair",
"build:codex": "node scripts/build-codex.js",
"make:assets": "node scripts/make-assets.js",
"make:gifs": "node scripts/make-extension-gifs.js && for g in hero clip library; do ./scripts/make-gif.sh $g && ./scripts/make-gif.sh $g-light; done",
"screenshots": "node scripts/make-screenshots.js",
"bench": "node benchmarks/run.js --runs 3",
"bump": "node scripts/bump-version.js",
"make:logo": "node scripts/make-logo.js",
"make:poster": "node scripts/make-poster.js",
"make:social": "node scripts/make-social.js && rsvg-convert -w 2400 -h 1254 assets/social-card.svg -o assets/social-card.png",
"make:social-set": "node scripts/make-social-set.js && cd assets/social && for f in compounding correctness-tie problem; do rsvg-convert -w 2400 -h 1254 $f.svg -o $f.png; done && rsvg-convert -w 2160 -h 2160 square.svg -o square.png",
"make:works-with": "node scripts/make-works-with.js && cd assets/social && rsvg-convert -w 2400 -h 1256 works-with.svg -o works-with.png && rsvg-convert -w 2160 -h 2160 works-with-square.svg -o works-with-square.png"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"playwright": "^1.63.0"
}
}