-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.34 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
{
"name": "launchpad-controller",
"version": "0.0.4",
"description": "API for interacting with Launchpad devices",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/tabazevedo/launchpad-controller",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "yarn clean; yarn build:main; yarn build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build:watch": "yarn clean; yarn build:main -w & yarn build:module -w",
"fix": "yarn fix:prettier; yarn fix:eslint",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:eslint": "eslint --fix \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" && prettier \"src/**/*.ts\" --list-different",
"clean": "rimraf build"
},
"engines": {
"node": ">=16.0"
},
"devDependencies": {
"@types/node": "^16.10.2",
"@types/ramda": "^0.27.45",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"midi": "^2.0.0",
"ramda": "^0.27.1"
}
}