-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 839 Bytes
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
{
"name": "soulreaktive-meldrandomizer-v1",
"version": "1.0.0",
"main": "dist/extension.js",
"engines": {
"node": ">=24.14.1"
},
"type": "module",
"scripts": {
"build": "tsc --noEmit && tsx build.ts --production",
"build:dev": "tsc --noEmit && tsx build.ts",
"start": "npm run build:dev && extensions-cli run",
"package": "npm run build && extensions-cli package"
},
"dependencies": {
"@ableton-extensions/sdk": "file:./vendor/ableton-extensions-sdk-1.0.0-beta.0.tgz"
},
"devDependencies": {
"@ableton-extensions/cli": "file:./vendor/ableton-extensions-cli-1.0.0-beta.0.tgz",
"@types/node": "^24.1.0",
"esbuild": "0.28.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vite": "^6.0.0"
},
"allowScripts": {
"esbuild@0.28.0": true,
"esbuild@0.25.12": true
}
}