-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "redux-webmidi",
"version": "0.1.3",
"description": "🎹 Intuitive Redux reducer/action creators for handling MIDI devices. ",
"main": "dist/redux-webmidi.js",
"browser": "dist/redux-webmidi.browser.js",
"typings": "dist/src/redux-webmidi.d.ts",
"types": "dist/src/redux-webmidi.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production ts-node webpack.ts",
"start": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plus1tv/redux-webmidi.git"
},
"keywords": [
"web",
"vst",
"audio",
"input"
],
"author": "Alain Galvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/plus1tv/redux-webmidi/issues"
},
"homepage": "https://github.com/plus1tv/redux-webmidi#readme",
"devDependencies": {
"@types/redux": "^3.6.31",
"@types/webmidi": "2.0.4",
"cross-env": "^7.0.3",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.24.3"
},
"peerDependencies": {
"redux": "^4.x || ^3.x"
}
}