-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "@elemaudio/web-renderer",
"version": "4.0.3",
"type": "module",
"description": "Official package for rendering Elementary Audio applications to Web Audio",
"keywords": [
"audio",
"dsp",
"signal",
"processing",
"functional",
"declarative",
"webaudio"
],
"author": "Nick Thompson <nick@elementary.audio>",
"homepage": "https://www.elementary.audio",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/index.js",
"dist/index.cjs",
"dist/index.d.ts",
"README.md",
"LICENSE.md"
],
"scripts": {
"wasm": "./scripts/prebuild.sh",
"build": "tsup index.ts --format cjs,esm --dts --env.PKG_VERSION $npm_package_version",
"test": "vitest run test --config=./test/vite.config.js"
},
"devDependencies": {
"@vitest/browser": "^1.2.2",
"tsup": "^8.3.5",
"vite": "^4.4.9",
"vitest": "^1.2.2",
"webdriverio": "^8.30.0"
},
"dependencies": {
"@elemaudio/core": "^4.0.1",
"invariant": "^2.2.4"
}
}