-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 806 Bytes
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
{
"name": "note-sequencer",
"version": "0.0.1",
"description": "Lightweight note sequencer built with Custom Elements and Canvas APIs.",
"author": "Pierre-Clément KERNEIS",
"license": "LGPLv3",
"scripts": {
"webpack": "webpack --config webpack.config.js --display-error-details",
"dev": "webpack-dev-server --open",
"dev-hot": "webpack-dev-server --open --hot",
"doc": "typedoc",
"build": "tsc"
},
"main": "lib/index.js",
"private": true,
"devDependencies": {
"@microsoft/tsdoc": "^0.12.18",
"ts-loader": "^6.2.2",
"tslint": "^6.1.1",
"typedoc": "^0.17.3",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {}
}