-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.66 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "seslen",
"version": "0.1.0",
"description": "High-DX Web Audio: zero-dep, tree-shakeable library with synthesised UI sound presets, named buses + ducking, polyphony cap, throttle, jitter, fades, pan, sprites, sample-accurate scheduling, OfflineAudioContext render-to-WAV, AnalyserNode tap, prefers-reduced-motion auto-mute, localStorage persistence and an SSR-safe stub. Strict TypeScript.",
"keywords": [
"analyser",
"audio",
"audio-engine",
"audio-sprite",
"audiocontext",
"click-sound",
"ducking",
"esm",
"feedback",
"game-audio",
"html5-audio",
"interaction",
"noise-burst",
"notification",
"offline-audio",
"oscillator",
"polyphony",
"prefers-reduced-motion",
"preset",
"react",
"render-to-wav",
"ses",
"seslen",
"sfx",
"sidechain",
"sound",
"sound-effects",
"sound-fx",
"ssr",
"stereo-panner",
"synthesis",
"tree-shakeable",
"typescript",
"ui-sound",
"ui-sounds",
"vue",
"wav",
"web-audio",
"webaudio",
"zero-dependency"
],
"homepage": "https://github.com/productdevbook/seslen",
"bugs": {
"url": "https://github.com/productdevbook/seslen/issues"
},
"license": "MIT",
"author": "productdevbook",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbook/seslen.git"
},
"funding": "https://github.com/sponsors/productdevbook",
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./presets": {
"types": "./dist/presets/index.d.mts",
"default": "./dist/presets/index.mjs"
},
"./server": {
"types": "./dist/server.d.mts",
"default": "./dist/server.mjs"
}
},
"scripts": {
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt --check .",
"lint:fix": "oxlint . --fix && oxfmt .",
"fmt": "oxfmt .",
"test": "pnpm lint && pnpm typecheck && vitest run",
"typecheck": "tsgo --noEmit",
"bundle-budget": "node scripts/bundle-budget.mjs",
"attw": "pnpm dlx @arethetypeswrong/cli --pack . --profile esm-only",
"release": "pnpm test && pnpm build && pnpm bundle-budget && bumpp --commit --tag --push --all",
"prepack": "pnpm build"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260316.1",
"@vitest/coverage-v8": "^4.1.5",
"bumpp": "^11.0.1",
"jsdom": "^29.1.0",
"obuild": "^0.4.33",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}