-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.24 KB
/
package.json
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
{
"name": "modern-audio",
"version": "0.1.4",
"packageManager": "[email protected]",
"description": "A modern web audio lib",
"main": "dist/modern-audio.js",
"module": "dist/modern-audio.mjs",
"types": "types/index.d.ts",
"browser": "dist/modern-audio.js",
"repository": {
"type": "git",
"url": "git+https://github.com/qq15725/modern-audio.git"
},
"bugs": {
"url": "https://github.com/qq15725/modern-audio/issues"
},
"homepage": "https://github.com/qq15725/modern-audio",
"engines": {
"node": ">=14"
},
"keywords": [
"modern-audio",
"audio",
"web-audio",
"noise-reduction"
],
"license": "MIT",
"author": "wxm",
"sideEffects": false,
"files": [
"dist",
"types"
],
"exports": {
".": {
"require": "./dist/modern-audio.cjs",
"import": "./dist/modern-audio.mjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc --project tsconfig.build.json",
"release": "bumpp package.json --commit \"chore(release): publish v%s\" --push --tag && pnpm publish"
},
"devDependencies": {
"@qq15725/eslint-config": "^1.1.0",
"@types/node": "^18.7.16",
"bumpp": "^8.2.1",
"eslint": "^8.23.0",
"typescript": "^4.8.3",
"vite": "^3.1.0"
}
}