-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "shellwrapped",
"version": "1.0.0",
"description": "Your Terminal's Spotify Wrapped",
"files": [
"build",
"assets"
],
"bin": {
"shellwrapped": "build/index.js"
},
"type": "module",
"scripts": {
"build": "bun build ./src/cli/index.ts --target bun --outfile build/index.js --external speaker --external ink-big-text --external cfonts",
"dev": "bun --watch src/cli/index.ts",
"clean": "rm -rf build node_modules",
"test": "bun test",
"start": "bun run build && ./build/index.js"
},
"dependencies": {
"chalk": "^5.3.0",
"ink": "^5.0.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"meow": "^12.0.0",
"react": "^18.2.0",
"react-devtools-core": "^7.0.1",
"speaker": "^0.5.0",
"terminal-image": "^2.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/ink": "^2.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"typescript": "^5.0.0"
},
"author": "ShellWrapped",
"license": "MIT"
}