-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.08 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
88
89
{
"name": "@arcanewizards/timecode-toolbox",
"version": "0.4.3",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArcaneWizards/open-source.git",
"directory": "apps/timecode-toolbox"
},
"bin": {
"timecode-toolbox": "./dist/start.js"
},
"exports": {
".": {
"@arcanewizards/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./frontend": {
"@arcanewizards/source": "./src/components/frontend/index.tsx",
"types": "./dist/components/frontend/index.d.ts",
"require": "./dist/frontend.js"
},
"./entrypoint": "./dist/entrypoint.js",
"./entrypoint.css": "./dist/entrypoint.css",
"./package.json": "./package.json"
},
"files": [
"LICENSE",
"dist"
],
"scripts": {
"build": "pnpm check:types && pnpm clean && cp ../../LICENSE ./LICENSE && tsup && pnpm build:entrypoint && pnpm build:frontend && pnpm build:styles && check-export-map",
"build:entrypoint": "arcane-build-frontend --entry src/components/frontend/entrypoint.ts --outfile dist/entrypoint.js --sourcemap",
"build:frontend": "arcane-build-frontend --entry src/components/frontend/index.tsx --outfile dist/frontend.js --sourcemap",
"build:styles": "tailwindcss -i ./src/components/frontend/frontend.css -o ./dist/entrypoint.css",
"clean": "rm -rf dist",
"check:types": "tsc --noEmit",
"format:fix": "cd .. && pnpm format:fix",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"start": "pnpm build:entrypoint && pnpm build:styles && node --import=tsx --conditions=@arcanewizards/source src/start"
},
"devDependencies": {
"@arcanejs/build-utils": "^0.1.2",
"@arcanejs/diff": "^0.6.0",
"@arcanejs/protocol": "^0.9.0",
"@arcanejs/toolkit-frontend": "^0.12.0",
"@arcanewizards/apis": "workspace:^",
"@arcanewizards/artnet": "workspace:^",
"@arcanewizards/eslint-config": "workspace:^",
"@arcanewizards/ltc": "workspace:^",
"@arcanewizards/midi-timecode": "workspace:^",
"@arcanewizards/net-utils": "workspace:^",
"@arcanewizards/sigil": "workspace:^",
"@arcanewizards/tcnet": "workspace:^",
"@arcanewizards/typescript-config": "workspace:^",
"@tailwindcss/cli": "^4.2.2",
"@types/lodash": "^4.17.24",
"@types/luxon": "^3.7.1",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"check-export-map": "^1.3.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-plugin-better-tailwindcss": "^4.3.2",
"lodash": "^4.18.1",
"luxon": "^3.7.2",
"music-metadata": "^11.12.3",
"osc-js": "^2.4.1",
"radix-ui": "^1.4.3",
"tailwindcss": "^4.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"uuid": "^11.1.1",
"zod": "^3.25.76"
},
"dependencies": {
"@arcanejs/react-toolkit": "^0.16.0",
"@arcanejs/toolkit": "^9.0.0",
"@arcanewizards/midi": "workspace:^",
"pino": "^9.14.0",
"pino-pretty": "^11.3.0",
"react": "^19.2.4"
}
}