mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 03:23:11 +00:00
aaf880c925
* WIP moving tests to web-test-runner * updating thresholds * Adding file extensions * Testing integrations * linting * fixing dep * moving back to root dir * prettier all of the files * updating eslint rules to use with prettier * remove import package * moving tsignore around * removing unneeded ignores * all tests run on puppeteer, no need for testing guards * linting * import type syntax * cleaning up * Update package.json
112 lines
3.2 KiB
JSON
112 lines
3.2 KiB
JSON
{
|
|
"name": "tone",
|
|
"version": "15.0.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": {
|
|
"build": "npm run increment && rimraf build && npm run ts:build && npm run webpack:build",
|
|
"docs": "node scripts/generate_docs.cjs",
|
|
"docs:json": "typedoc --options \"./scripts/typedoc.json\" --json \"./docs/tone.json\"",
|
|
"increment": "node scripts/increment_version.cjs",
|
|
"lint": "eslint --ext ts ./Tone",
|
|
"lint:fix": "eslint --ext ts --fix ./Tone ./test",
|
|
"pretty": "prettier ./Tone ./test -w",
|
|
"scratch": "webpack -w --env scratch=1 --mode=development",
|
|
"test": "tsc && web-test-runner --config=./test/web-test-runner.config.js",
|
|
"test:examples": "node ./test/scripts/test_examples.cjs",
|
|
"test:html": "node ./test/scripts/test_html.cjs",
|
|
"test:integrations": "zx ./test/scripts/test_integrations.mjs",
|
|
"test:readme": "node ./test/scripts/test_readme.cjs",
|
|
"test:watch": "tsc && concurrently --raw \"tsc -w\" \"web-test-runner --config=./test/web-test-runner.config.js --watch\"",
|
|
"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": "^25.0.7",
|
|
"@types/chai": "^4.3.0",
|
|
"@types/mocha": "^5.2.6",
|
|
"@types/ua-parser-js": "^0.7.36",
|
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"@web/dev-server-esbuild": "^1.0.2",
|
|
"@web/dev-server-rollup": "^0.6.1",
|
|
"@web/test-runner": "^0.18.1",
|
|
"@web/test-runner-puppeteer": "^0.16.0",
|
|
"array2d": "^0.0.5",
|
|
"audiobuffer-to-wav": "^1.0.0",
|
|
"chai": "^5.1.0",
|
|
"codecov": "^3.8.3",
|
|
"concurrently": "^8.2.2",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-file-extension-in-import-ts": "^2.1.0",
|
|
"eslint-plugin-html": "^8.1.1",
|
|
"eslint-plugin-jsdoc": "^48.2.3",
|
|
"fft-windowing": "^0.1.4",
|
|
"fourier-transform": "^1.1.2",
|
|
"fs-extra": "^8.1.0",
|
|
"glob": "^10.3.12",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"http-server": "^13.0.2",
|
|
"jsdom": "^16.7.0",
|
|
"mocha": "^9.1.3",
|
|
"plotly.js-dist": "^2.32.0",
|
|
"prettier": "^3.2.5",
|
|
"rimraf": "^5.0.5",
|
|
"semver": "^5.7.1",
|
|
"showdown": "^2.1.0",
|
|
"teoria": "^2.5.0",
|
|
"tmp-promise": "^2.1.1",
|
|
"tonal": "^6.0.1",
|
|
"ts-loader": "^9.5.1",
|
|
"typedoc": "^0.25.13",
|
|
"typescript": "^5.4.5",
|
|
"ua-parser-js": "^0.7.31",
|
|
"webpack": "^5.91.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"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
|
|
}
|
|
}
|