forked from Theodeus/tuna
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.18 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": "tunajs",
"version": "2.0.0",
"description": "Audio effects library for the Web Audio API",
"main": "./dist/tuna.js",
"directories": {
"test": "tests"
},
"files": ["dist"],
"type": "module",
"source": "./src/tuna.ts",
"exports": {
".": {
"import": {
"default": "./dist/tuna.js",
"types": "./dist/tuna.d.ts"
},
"require": {
"default": "./dist/tuna.cjs",
"types": "./dist/tuna.d.cts"
},
"script": {
"default": "./dist/tuna.global.js",
"types": "./dist/tuna.d.ts"
}
}
},
"scripts": {
"prepare": "npm run build",
"build": "tsup src/tuna.ts",
"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": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.9",
"express": "^4.17.1",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
}
}