-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.54 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
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
{
"name": "ableton-live",
"version": "12.1.1",
"type": "module",
"main": "./build/esm/node.mjs",
"module": "./build/esm/index.mjs",
"typings": "./build/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./build/types/index.d.ts",
"default": "./build/esm/node.mjs"
},
"require": {
"types": "./build/types/index.d.ts",
"default": "./build/cjs/index.cjs"
}
}
},
"types": "./build/types/index.d.ts",
"description": "A library for communicating with Ableton Live via WebSockets, works both in Node and in the Browser.",
"scripts": {
"start": "rollup -c rollup.config.browser.js --watch",
"build": "npm run cleanup && npm run build:node && npm run build:browser && npm run types && npm run copy:liveapi && npm run copy:liveapioffline",
"build:browser": "node esbuild.config.browser.js",
"build:node": "node esbuild.config.node.js",
"copy:liveapi": "cp ./external/live-api.js ./external/LiveAPI/code/live-api-release.js",
"copy:liveapioffline": "cp ./external/live-api.js ./external/LiveAPIOffline/live-api-release.js",
"dev": "nodemon --watch 'lib/**' --ext 'ts' --exec 'npm run build'",
"comments": "leasot -x -i 'node_modules/**/*','**/*.json' --tags '>' **/*.js **/*.ts",
"lint": "eslint lib",
"lint:quiet": "eslint lib --quiet",
"prepare": "npm run build",
"cleanup": "rimraf ./build",
"types": "tsc --emitDeclarationOnly --outDir build/types && cp build/types/index.d.ts build/types/index.d.mts",
"docs": "typedoc"
},
"files": [
"external/LiveAPI.amxd",
"build/*"
],
"author": {
"name": "Ricardo Matias",
"url": "https://github.com/ricardomatias"
},
"repository": {
"type": "git",
"url": "git://github.com/ricardomatias/ableton-live.git"
},
"homepage": "https://github.com/ricardomatias/ableton-live",
"bugs": {
"url": "https://github.com/ricardomatias/ableton-live/issues"
},
"license": "MIT",
"keywords": [
"ableton",
"live",
"max",
"max4live",
"live-api",
"music",
"algorave"
],
"dependencies": {
"mitt": "^3.0.1",
"nanoid": "^5.0.6"
},
"devDependencies": {
"@sisense/typedoc-plugin-markdown": "^4.0.0-next.46",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "^0.19.12",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"leasot": "^13.3.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typedoc": "^0.25.12",
"typescript": "^5.4.2"
}
}