-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "pirate-midi-usb",
"version": "0.0.0-development",
"description": "Easily interact with Pirate Midi devices over USB from JavaScript",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"browser": {
"./lib/index.js": "./lib/index.browser.js",
"./lib/index.esm.js": "./lib/index.browser.esm.js"
},
"exports": {
"node": {
"import": "./lib/index.esm.js",
"module": "./lib/index.esm.js",
"default": "./lib/index.js"
},
"browser": {
"import": "./lib/index.browser.esm.js",
"module": "./lib/index.browser.esm.js",
"default": "./lib/index.browser.js"
},
"import": "./lib/index.browser.esm.js",
"module": "./lib/index.browser.js",
"default": "./lib/index.browser.js"
},
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"sideEffects": false,
"scripts": {
"examples:intro": "wds --watch --supervise examples/intro.ts",
"examples:backup": "wds --watch --supervise examples/backup.ts",
"examples:restore": "wds --watch --supervise examples/restore.ts",
"examples:browser": "cd examples/browser && npm run dev",
"build": " npx rollup -c",
"clean": "rm -rf ./lib/",
"cm": "cz",
"coverage": "codecov",
"lint": "rome check . --apply-suggested",
"format": "rome format . --write",
"download-device-descriptors": "wds ./scripts/download-device-descriptors.ts",
"prepare": "husky install && npm run download-device-descriptors",
"semantic-release": "semantic-release",
"test:watch": "jest --watch --runInBand",
"test": "jest --coverage --runInBand",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GriffinSauce/pirate-midi-usb.git"
},
"license": "MIT",
"author": {
"name": "Joris Griffioen",
"email": "[email protected]",
"url": "https://github.com/GriffinSauce"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"boilerplate",
"template",
"typescript",
"vscode",
"jest",
"husky",
"commitizen",
"semantic-release",
"codecov"
],
"bugs": {
"url": "https://github.com/GriffinSauce/pirate-midi-usb/issues"
},
"homepage": "https://github.com/GriffinSauce/pirate-midi-usb#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@serialport/binding-mock": "^10.2.2",
"@swc/core": "^1.2.218",
"@swc/jest": "^0.2.22",
"@types/jest": "^28.1.6",
"@types/node": "^12.20.11",
"@types/node-fetch": "^2.6.2",
"@types/semver": "^7.3.13",
"@types/w3c-web-serial": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"codecov": "^3.8.3",
"husky": "^6.0.0",
"jest": "^28.1.3",
"lint-staged": "^10.5.4",
"node-fetch": "^2.6.7",
"picocolors": "^1.0.0",
"rollup": "^2.76.0",
"rollup-plugin-polyfill-node": "^0.10.1",
"rollup-plugin-visualizer": "^5.7.1",
"rome": "^11.0.0",
"semantic-release": "^23.1.1",
"semver": "^7.3.8",
"typescript": "^4.9.5",
"wds": "^0.12.0"
},
"dependencies": {
"@serialport/bindings-cpp": "^10.7.0",
"@serialport/parser-regex": "^10.3.0",
"serialport": "^10.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "npm run format && npm run lint"
},
"release": {
"branches": [
"main",
"next"
]
}
}