-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "@applemusic-like-lyrics/ws-protocol",
"collaborators": [
"SteveXMH <39523898+Steve-xmh@users.noreply.github.com>"
],
"description": "一个歌词播放器协议库,用于不同播放软件与实现本协议的歌词播放器同步播放进度和播放信息",
"version": "0.3.2",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/amll-dev/ws-protocol"
},
"scripts": {
"build": "wasm-pack build --release && node -e \"require('fs').rmSync('pkg/.gitignore', { force: true })\"",
"build:dev": "wasm-pack build --dev",
"fmt": "cargo fmt && biome format . --write",
"cs": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
},
"files": [
"pkg/*.wasm",
"pkg/*.js",
"pkg/*.d.ts"
],
"module": "pkg/ws_protocol.js",
"types": "pkg/ws_protocol.d.ts",
"sideEffects": [
"./pkg/ws_protocol.js",
"./pkg/snippets/*"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0"
},
"packageManager": "pnpm@11.1.1"
}