-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.github-package.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy path.github-package.json
File metadata and controls
63 lines (63 loc) · 1.57 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": "@charleswiltgen/taglib-wasm",
"version": "0.2.0",
"description": "TagLib compiled to WebAssembly with TypeScript bindings for universal audio metadata handling",
"main": "index.ts",
"types": "index.ts",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"src/**/*",
"build/taglib.wasm",
"build/taglib.js",
"lib/taglib/COPYING.LGPL",
"lib/taglib/COPYING.MPL"
],
"scripts": {
"build:wasm": "./build/build-wasm.sh",
"build:ts": "deno run --allow-read --allow-write --allow-run --allow-env npm:typescript/tsc",
"build": "deno task build:wasm && deno task build:ts",
"test": "deno run --allow-read tests/test-systematic.ts",
"test:bun": "bun run tests/test-systematic.ts",
"test:node": "node --loader ts-node/esm tests/test-systematic.ts",
"update-taglib": "./scripts/update-taglib.sh"
},
"keywords": [
"taglib",
"webassembly",
"wasm",
"metadata",
"mp3",
"mp4",
"flac",
"audio",
"typescript",
"bun",
"deno",
"node",
"browser",
"cloudflare",
"workers",
"replaygain",
"musicbrainz",
"acoustid"
],
"author": "Charles Wiltgen <charles@wiltgen.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CharlesWiltgen/TagLib-Wasm.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/CharlesWiltgen/TagLib-Wasm/issues"
},
"homepage": "https://github.com/CharlesWiltgen/TagLib-Wasm#readme",
"engines": {
"node": ">=18.0.0"
}
}