-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 KB
/
package.json
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
{
"name": "package-ableton-js",
"version": "1.0.0",
"description": "Control Ableton 11+ with Grid controllers.",
"main": "index.js",
"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:*",
"build": "run-p build:*",
"dev": "run-p dev:*"
},
"author": "",
"license": "ISC",
"grid_editor": {
"componentsPath": "components/dist/components.js",
"preferenceComponent": "template-preference"
},
"devDependencies": {
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"rimraf": "^6.0.1",
"sucrase": "^3.35.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"ableton-js": "^3.6.0"
}
}