-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "control-traktor",
"version": "6.0.0",
"description": "A collection of settings and Max4Live devices for improved control over Traktor Pro.",
"main": "README.md",
"engines": {
"node": "22.11.0",
"npm": "10.9.0"
},
"person": {
"name": "Dan Smith",
"email": "[email protected]"
},
"scripts": {
"backup": "./scripts/backup.sh",
"build": "npm run backup && npm run dist",
"changelog": "git log --pretty='* [%h] %s' --no-merges $(git describe --tags --abbrev=0 @^)..@ > CHANGELOG.md",
"dist": "./scripts/dist.sh && cd ./dist && ./install.sh 3.11.1 && cd ../",
"postinstall": "chmod a+x scripts/*sh && npm run build",
"reinstall": "npm run build",
"release": "npm run build && npm run changelog && cp -r ./dist ./release",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotherightthing/control-traktor.git"
},
"keywords": [
"max4live",
"streamdeck",
"traktor-pro"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotherightthing/control-traktor/issues"
},
"homepage": "https://github.com/dotherightthing/control-traktor#readme",
"devDependencies": {
"nodemon": "^2.0.20"
},
"nodemonConfig": {
"ext": "js,amxd,txt",
"exec": "npm run build",
"watch": [
"src/clyphx-pro"
]
}
}