-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.31 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
{
"name": "nixamp",
"version": "0.28.38",
"description": "It really whips the terminal's ass. A Winamp-shaped audio player for your terminal.",
"license": "MIT",
"type": "module",
"homepage": "https://nixamp.com",
"bin": {
"nixamp": "./bin/nixamp.mjs"
},
"files": [
"dist",
"bin",
"src",
"web/dist",
"backtoschool/dist",
"README.md",
"LICENSE"
],
"workspaces": [
"web",
"backtoschool",
"desktop",
"packages/*"
],
"engines": {
"bun": ">=1.1",
"node": ">=22.6"
},
"scripts": {
"start": "bun src/main.ts",
"serve": "bun src/main.ts serve",
"build": "bun x tsc -p tsconfig.json",
"typecheck": "bun x tsc -p tsconfig.json --noEmit && bun run --filter '@nixamp/web' typecheck && bun run --filter '@nixamp/backtoschool-web' typecheck",
"test": "bun test test web/test",
"icons": "bun web/scripts/icons.ts",
"web:dev": "bun run --filter '@nixamp/web' dev",
"web:build": "bun run --filter '@nixamp/web' build",
"web:preview": "bun run --filter '@nixamp/web' preview",
"backtoschool:dev": "bun run --filter '@nixamp/backtoschool-web' dev",
"backtoschool:build": "bun run --filter '@nixamp/backtoschool-web' build",
"backtoschool:preview": "bun run --filter '@nixamp/backtoschool-web' preview",
"desktop:dev": "bun run --filter '@nixamp/desktop' dev",
"desktop:build": "bun run --filter '@nixamp/desktop' build",
"pack:cli": "bun scripts/pack-cli.ts"
},
"dependencies": {
"@profullstack/auth-system": "^0.6.0",
"@profullstack/hqtui": "^0.5.0",
"@profullstack/synconfig": "^0.1.2",
"@profullstack/throttle": "0.2.2",
"@profullstack/x402-gateway": "0.6.0",
"acme-client": "5.4.0",
"pg": "^8.23.0",
"web-push": "^3.6.7"
},
"optionalDependencies": {
"@huggingface/transformers": "^4.2.0"
},
"devDependencies": {
"@types/node": "^26",
"@types/pg": "^8.23.1",
"@types/web-push": "^3.6.4",
"typescript": "^7.0.2"
},
"trustedDependencies": [
"electron"
],
"keywords": [
"audio",
"player",
"winamp",
"tui",
"terminal",
"ffmpeg",
"hqtui",
"pwa"
],
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/nixamp.git"
},
"overrides": {
"https-proxy-agent": "7.0.6",
"tslib": "2.8.1"
}
}