This repository was archived by the owner on Jun 20, 2026. It is now read-only.
forked from JukeeBox/JukeBox_TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "jukebox-exp",
"version": "0.0.1",
"description": "Unofficial experimental fork of JukeBox. Browser-based tool for sketching and sharing instrumental music.",
"author": "PopCat19",
"contributors": [
"PopCat19",
"Slarmoo",
"Main",
"Neputendo",
"LeoV",
"Mid",
"Choptop84"
],
"license": "MIT",
"homepage": "https://popcat19.github.io/JukeBox-Exp/",
"type": "module",
"scripts": {
"build": "bun scripts/build.ts",
"build:offline": "bun scripts/build.ts --offline",
"typecheck": "tsc --noEmit -p tsconfig_editor.json",
"typecheck:synth": "tsc --noEmit -p tsconfig_synth.json",
"typecheck:player": "tsc --noEmit -p tsconfig_player.json",
"typecheck:all": "npm run typecheck && npm run typecheck:synth && npm run typecheck:player",
"dev": "bash ./scripts/live-editor.sh",
"dev:static": "bash ./scripts/live-editor-static.sh",
"lint": "bash ./scripts/lint.sh",
"lint:fix": "bash ./scripts/lint-fix.sh",
"test": "bun test",
"deploy": "bash ./scripts/deploy.sh",
"deploy-files": "bash ./scripts/deploy_files.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PopCat19/JukeBox-Exp.git"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@eslint/js": "^10.0.1",
"@types/jquery": "^3.5.32",
"@types/select2": "^4.0.63",
"bun-types": "^1.3.11",
"concurrently": "^9.1.2",
"esbuild": "^0.25.5",
"eslint": "^10.1.0",
"eslint-plugin-security": "^4.0.1",
"five-server": "^0.4.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"imperative-html": "^0.1.1",
"js-xxhash": "^4.0.0",
"select2": "^4.0.13"
}
}