-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
{
"name": "@charwasp/chart-object",
"version": "0.2.0",
"description": "Library to manipulate CWP charts, to encode them to files and decode them from files, and to convert them to CBT format",
"author": {
"name": "Ulysses Zhan",
"email": "ulysseszhan@gmail.com",
"url": "https://ulysseszh.github.io"
},
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/charwasp/chart-object.git"
},
"bugs": {
"url": "https://github.com/charwasp/chart-object/issues"
},
"homepage": "https://github.com/charwasp/chart-object#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src"
],
"filesComments": "Including src to make the sourcemaps point somewhere.",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "tsc && rollup -c",
"test": "tsc -p tsconfig.test.json && node --enable-source-maps test-dist/test/index.js",
"doc": "typedoc --options typedoc.json"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/pngjs": "^6.0.5",
"audio-buffer": "^5.0.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@petamoriken/float16": "^3.9.2",
"fraction.js": "^5.2.2",
"pngjs": "^7.0.0",
"@wasm-audio-decoders/ogg-vorbis": "^0.1.18"
}
}