-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
{
"name": "@yandeu/audio",
"version": "0.0.2",
"description": "🎵 Audio library for the Web Audio API. (TypeScripted version of Three.js@r126's Audio without Object3D)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"format": "prettier --write src/**",
"start": "npm run dev",
"dev": "npm-run-all --parallel dev:*",
"dev:webpack": "webpack --config webpack.dev.cjs --watch",
"dev:server": "five-server --open=dev",
"build": "npm-run-all build:*",
"build:version": "npm run version",
"build:tsc": "tsc",
"build:webpack": "webpack --config webpack.prod.cjs",
"version": "extract version src/version.ts && npm run format",
"docs": "rimraf docs/**/*.md && typedoc .\\src --disableOutputCheck --excludePrivate --excludeProtected",
"prepareRelease": "node scripts/release.cjs && npm i --legacy-peer-deps && npm run lint && npm run build && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yandeu/audio.git"
},
"keywords": [
"web",
"audio",
"sound",
"music",
"track"
],
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yandeu/audio/issues"
},
"homepage": "https://yandeu.github.io/audio/",
"dependencies": {
"@types/three": "~0.126.0",
"three": "~0.126.1"
},
"devDependencies": {
"@yandeu/eslint-config": "^0.0.2",
"@yandeu/extract": "^0.0.3",
"@yandeu/prettier-config": "^0.0.2",
"eslint": "^7.31.0",
"five-server": "^0.0.27",
"html-webpack-plugin": "^5.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.3",
"typedoc": "^0.21.4",
"typescript": "^4.2.2",
"webpack": "^5.46.0",
"webpack-cli": "^4.5.0"
}
}