-
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) · 783 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 783 Bytes
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": "ampcode-wrapped",
"version": "1.0.0",
"author": "Rezha Julio",
"description": "Generate a personalized Spotify Wrapped-style summary of your Amp usage",
"keywords": ["ampcode", "amp", "wrapped", "ai-coding"],
"license": "MIT",
"type": "module",
"bin": {
"ampcode-wrapped": "./bin/ampcode-wrapped"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@resvg/resvg-wasm": "^2.6.2",
"react": "^19.2.3",
"satori": "^0.18.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.7",
"typescript": "^5.0.0"
}
}