-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
{
"name": "@sad-systems/a-tracktor",
"version": "1.2.0",
"description": "The library of widgets for visualizing audio data.",
"main": "lib.bundle.js",
"module": "lib.js",
"license": "ISC",
"author": "MrDigger <[email protected]> (https://sad-systems.github.io)",
"homepage": "https://github.com/sad-systems/a-tracktor",
"repository": {
"type": "git",
"url": "https://github.com/sad-systems/a-tracktor.git"
},
"keywords": [
"web",
"audio",
"analyzer",
"javascript",
"widget",
"microphone"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.demo.config.js",
"build": "cross-env NODE_ENV=production webpack && yarn make-declarations && yarn docs && yarn build-demo",
"build-demo": "cross-env NODE_ENV=production webpack --config webpack.demo.config.js",
"make-declarations": "tsc -d src/lib.ts --outDir dist",
"docs": "typedoc",
"npm-publish": "cd dist && npm publish --access public --token",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "yarn prettier --write src/",
"format-check": "yarn prettier --check src/"
},
"devDependencies": {
"@types/ws": "8.5.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^7.0.3",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"lodash": "^4.17.11",
"node-sass": "^9.0.0",
"postcss": "^8.4.21",
"postcss-import": "^16.1.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"postcss-scss": "^4.0.6",
"prettier": "^3.3.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typedoc": "0.20.20",
"typescript": "4.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}