-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) 路 2.41 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) 路 2.41 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
{
"name": "spotuify",
"version": "0.2.2",
"packageManager": "bun@1.3.14",
"module": "src/index.tsx",
"type": "module",
"private": true,
"license": "MIT",
"homepage": "https://github.com/austin-smith/spotuify",
"repository": {
"type": "git",
"url": "https://github.com/austin-smith/spotuify.git"
},
"bin": {
"spotuify": "src/cli.ts"
},
"scripts": {
"auth": "bun run engine:build && bun run src/cli.ts auth",
"dev": "bun run engine:build && bun run src/index.tsx",
"engine:build": "cargo build --manifest-path native/Cargo.toml",
"engine:build:release": "cargo build --release --manifest-path native/Cargo.toml",
"engine:test": "cargo test --manifest-path native/Cargo.toml",
"installer:test:posix": "node --test test/installer-posix.node.mjs",
"installer:test:windows": "powershell -NoLogo -NoProfile -File ./test/installer-windows.tests.ps1",
"licenses:check": "scripts/licenses.sh check",
"licenses:generate": "scripts/licenses.sh generate",
"release": "bun run scripts/create-release.ts",
"release:build": "bun run scripts/build-release.ts",
"release:canary-version": "bun run scripts/canary-version.ts",
"release:checksums": "bun run scripts/checksums.ts",
"release:formula": "bun run scripts/render-homebrew-formula.ts",
"release:npm:package": "bun run scripts/package-npm.ts",
"release:npm:check": "bun run scripts/publish-npm.ts --check --tag latest",
"release:npm:publish": "bun run scripts/publish-npm.ts",
"release:npm:smoke": "bun run scripts/verify-npm.ts install",
"release:npm:verify": "bun run scripts/verify-npm.ts",
"release:package": "bun run scripts/package-release.ts",
"release:publish-formula": "bun run scripts/publish-homebrew-formula.ts",
"release:validate-tag": "bun run scripts/validate-release-tag.ts",
"release:verify": "bun run scripts/verify-release.ts",
"spotuify": "bun run src/cli.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.18",
"typescript": "^7"
},
"dependencies": {
"@clack/prompts": "1.7.0",
"@modelcontextprotocol/sdk": "1.30.0",
"@opentui/core": "0.5.3",
"@opentui/react": "0.5.3",
"ansi-escapes": "7.3.0",
"commander": "^15.0.0",
"jpeg-js": "0.4.4",
"react": "19.2.8",
"supports-hyperlinks": "4.5.0",
"zod": "4.4.3",
"zustand": "5.0.15"
}
}