forked from Tonejs/Tone.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.65 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.65 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "tone",
"version": "15.3.0",
"description": "A Web Audio framework for making interactive music in the browser.",
"type": "module",
"main": "build/esm/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"unpkg": "build/Tone.js",
"files": [
"README.md",
"LICENSE.md",
"build",
"docs",
"Tone"
],
"scripts": {
"remove": "node -e \"fs.rmSync('./build', { recursive: true, force: true })\"",
"build": "npm run increment && npm run remove && npm run ts:build && npm run webpack:build",
"docs:json": "typedoc --options \"./scripts/typedoc.json\" --json \"./docs/tone.json\"",
"increment": "node scripts/increment_version.cjs",
"lint": "tsc --noEmit && eslint ./Tone",
"lint:fix": "tsc --noEmit && eslint ./Tone ./test --fix",
"pretty": "prettier ./Tone ./test -w",
"scratch": "webpack serve --env scratch=1 --mode=development --config ./scripts/webpack.config.cjs",
"spellcheck": "cspell --config ./scripts/cspell.json ./Tone ./test/**/*.ts ./examples/**/*.html",
"test": "tsc && web-test-runner --config=./test/web-test-runner.config.js --coverage ${npm_config_group:+--group ${npm_config_group}}",
"test:examples": "node ./test/scripts/test_examples.mjs",
"test:html": "node ./test/scripts/test_html.mjs",
"test:integrations": "zx ./test/scripts/test_integrations.mjs",
"test:readme": "node ./test/scripts/test_readme.mjs",
"test:watch": "tsc && concurrently --raw \"tsc -w\" \"web-test-runner --config=./test/web-test-runner.config.js --watch ${npm_config_group:+--group ${npm_config_group}}\"",
"ts:build": "tsc --project ./scripts/tsconfig.build.json",
"watch": "tsc --watch",
"webpack:build": "webpack --env production=1 --config ./scripts/webpack.config.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/Tonejs/Tone.js.git"
},
"keywords": [
"Web Audio",
"Web Audio API",
"Synthesis",
"Playback",
"Effect",
"Instrument",
"DSP",
"Signal Processing",
"Interactive Music"
],
"author": "Yotam Mann (https://yotammann.info/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tonejs/Tone.js/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.3",
"@stylistic/eslint-plugin-js": "^4.2.0",
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^5.2.6",
"@types/ua-parser-js": "^0.7.36",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-rollup": "^0.6.1",
"@web/test-runner": "^0.20.0",
"@web/test-runner-puppeteer": "^0.18.0",
"array2d": "^0.0.5",
"audiobuffer-to-wav": "^1.0.0",
"chai": "^5.1.0",
"codecov": "^3.8.3",
"concurrently": "^8.2.2",
"cspell": "^9.0.2",
"eslint": "^9.25.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-jsdoc": "^50.6.11",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"fft-windowing": "^0.1.4",
"fourier-transform": "^1.1.2",
"fs-fixture": "^2.7.1",
"html-webpack-plugin": "^5.6.3",
"http-server": "^13.0.2",
"jsdom": "^26.1.0",
"marked": "^15.0.12",
"mocha": "^11.1.0",
"plotly.js-dist": "^2.32.0",
"prettier": "^3.2.5",
"puppeteer": "^24.2.1",
"semver": "^5.7.1",
"teoria": "^2.5.0",
"tinyglobby": "^0.2.14",
"tonal": "^6.0.1",
"ts-loader": "^9.5.1",
"typedoc": "^0.28.12",
"typescript": "^5.4.5",
"typescript-eslint": "^8.31.0",
"ua-parser-js": "^0.7.31",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"yargs": "^17.3.0",
"zx": "^8.0.2"
},
"dependencies": {
"standardized-audio-context": "^25.3.70",
"tslib": "^2.3.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"useTabs": true,
"singleQuote": false
}
}