-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "package-ableton-js",
"version": "1.0.5",
"description": "AbletonJS",
"main": "index.js",
"files": [
"**/*.js",
"**/*.d.ts",
"midi-script/**/*.py",
"scripts/**/*.js",
"components/dist/**",
"dist/**",
"README.md",
"MIDI_SCRIPT_SETUP.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"install:components": "cd ./components && npm install",
"build:components": "cd ./components && npm run build",
"dev:components": "cd ./components && npm run dev",
"dev:src": "nodemon",
"build:src": "rimraf dist && tsc",
"postinstall": "run-p install:* && node scripts/postinstall.js",
"build": "run-p build:*",
"dev": "run-p dev:*",
"ableton:copy-midi-script": "node scripts/copy-midi-script.js",
"ableton:open-remote-scripts": "node scripts/open-remote-scripts.js",
"ableton:open-midi-script-source": "node scripts/open-midi-script-source.js",
"ableton:setup": "npm run ableton:copy-midi-script",
"prepare-midi-script": "node scripts/prepare-midi-script.js",
"prepublishOnly": "npm run prepare-midi-script"
},
"author": "",
"license": "ISC",
"grid_editor": {
"componentsPath": "components/dist/components.js",
"preferenceComponent": "ableton-js-preferences",
"shortDescription": "Control Ableton through the ableton-js package",
"mainIcon": "ableton-js-main-logo.svg",
"menuIcon": "ableton-js-white-logo.svg"
},
"devDependencies": {
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"rimraf": "^6.0.1",
"sucrase": "^3.35.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"ableton-js": "^3.6.0"
}
}