-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "tunajs",
"version": "1.1.2",
"description": "Audio effects library for the Web Audio API",
"main": "./dist/tuna.umd.cjs",
"module": "./dist/tuna.js",
"types": "./dist/types/tuna.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/tuna.js",
"require": "./dist/tuna.umd.cjs"
}
},
"directories": {
"test": "tests"
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run build:types",
"build:types": "tsc",
"preview": "vite preview",
"test": "echo \"Error: no test specified\" && exit 1",
"patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Theodeus/tuna.git"
},
"keywords": [
"web audio",
"audio effects",
"tuna",
"tunajs",
"tuna.js"
],
"author": "Oskar Eriksson",
"license": "MIT",
"bugs": {
"url": "https://github.com/Theodeus/tuna/issues"
},
"homepage": "https://github.com/Theodeus/tuna#readme",
"devDependencies": {
"typescript": "^5.9.3",
"vite": "^7.3.0"
}
}