-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.27 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
{
"name": "launchpad.js",
"version": "3.4.7",
"description": "A javascript api to control your Novation launchpads",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc -b",
"ts:defs": "tsc --declaration --outDir types --emitDeclarationOnly",
"lint": "eslint src/* --ext .js,.jsx,.ts,.tsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duncte123/launchpad.js.git"
},
"keywords": [
"launchpad.py",
"launchpad",
"launchpad.js",
"novation",
"lp"
],
"author": "Duncan Sterken",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/duncte123/launchpad.js/issues"
},
"homepage": "https://github.com/duncte123/launchpad.js#readme",
"files": [
"dist/"
],
"dependencies": {
"color-convert": "^2.0.1",
"eventemitter3": "^4.0.7",
"midi": "^2.0.0",
"segfault-handler": "^1.3.0"
},
"devDependencies": {
"@types/color-convert": "^2.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
}
}