-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 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
{
"name": "faust-loader",
"version": "1.3.0",
"main": "dist/faustLoader.js",
"types": "dist/faustLoader.d.ts",
"scripts": {
"prepare": "install-peers",
"build": "tsc --project tsconfig.build.json || true",
"serve": "webpack serve -c test/webpack.config.js",
"test": "webpack build -c test/webpack.config.js",
"prepublishOnly": "yarn build && yarn test"
},
"keywords": ["webpack", "loader", "faust", "audio", "dsp"],
"author": "Mason Bourgeois",
"license": "ISC",
"description": "Webpack loader for Faust .dsp files",
"repository": "github:Smona/faust-loader",
"dependencies": {
"fs-extra": "^10.0.0",
"loader-utils": "^2.0.0",
"tmp-promise": "^3.0.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/loader-utils": "^2.0.2",
"install-peers-cli": "^2.2.0",
"ts-loader": "^9.3.1",
"typescript": "^4.3.2",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"standardized-audio-context": "^25.0.0"
}
}