-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.91 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
{
"name": "@eliastik/simple-sound-studio-lib",
"description": "A Web Audio API library used in my Simple Voice Changer (soon to be renamed to Simple Sound Studio) project",
"version": "2.2.2",
"private": false,
"scripts": {
"lint": "eslint .",
"build:type": "tsc --emitDeclarationOnly",
"build": "npm run build:type && npm run lint && rollup -c rollup.config.js --bundleConfigAsCjs",
"watch": "rollup -c rollup.config.js --bundleConfigAsCjs --watch",
"test": "jest",
"coverage": "jest --coverage --collectCoverageFrom='lib/**/*.{ts,tsx}'",
"doc": "npx typedoc"
},
"repository": "github:eliastik/simple-sound-studio-lib",
"main": "dist/cjs/SimpleSoundStudioLibrary.js",
"module": "dist/esm/SimpleSoundStudioLibrary.js",
"types": "dist/index.d.ts",
"dependencies": {
"inversify": "^6.2.1",
"lamejs": "^1.2.1",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2",
"soundtouchjs": "^0.1.30"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "~11.1.6",
"@types/audioworklet": "^0.0.66",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"glob": "^11.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.31.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@types/audioworklet": "^0.0.65"
}
}