-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "gapless",
"version": "4.1.0",
"description": "Gapless audio playback javascript plugin",
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"sideEffects": false,
"private": false,
"scripts": {
"test": "vitest run",
"build": "tsup",
"build:demo": "pnpm --dir demo build",
"dev": "pnpm --dir demo dev",
"types": "tsc --noEmit",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RelistenNet/gapless.js.git"
},
"author": "Daniel Saewitz",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@switz/eslint-config": "^12.5.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.25.1",
"happy-dom": "^20.8.3",
"playwright": "^1.58.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.2",
"dependencies": {
"xstate": "^5.28.0"
}
}