-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@cher-ami/audio-manager",
"description": "A simple web audio manager",
"version": "0.3.2",
"author": "cher-ami",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/cher-ami/audio-manager.git"
},
"keywords": [
"audio",
"manager",
"web-audio"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev:basic": "pnpm --filter ./examples/basic run dev",
"build:watch": "microbundle watch --no-sourcemap --format esm --jsx React.createElement",
"build": "npm run clean && microbundle --jsx React.createElement",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"pre-publish": "npm run clean && npm run build && npm run size",
"size": "size-limit"
},
"size-limit": [
{
"limit": "2 kB",
"path": "dist/index.js"
}
],
"dependencies": {
"@wbe/debug": "^1.0.0",
"@zouloux/signal": "^0.2.4",
"howler": "^2.2.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@size-limit/file": "^8.1.0",
"@types/node": "^18.7.16",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"less": "^4.1.3",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3",
"vite": "^3.1.0"
},
"prettier": {
"semi": false
}
}