-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 KB
/
package.json
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
{
"name": "nitro-fs",
"version": "1.1.1",
"description": "NDS Filesystem reading and parsing library",
"type": "module",
"main": "dist/nitro-fs.js",
"module": "dist/nitro-fs.js",
"types": "dist/nitro-fs.d.ts",
"keywords": [
"nitro",
"nds",
"twl",
"ds",
"filesystem",
"nitro-fs",
"audio",
"texture",
"sound",
"sdat",
"sseq",
"strm"
],
"homepage": "https://github.com/DanielPXL/nitro-fs",
"repository": {
"type": "git",
"url": "https://github.com/DanielPXL/nitro-fs.git"
},
"author": "DanielPXL",
"license": "LGPL-3.0-or-later",
"scripts": {
"build": "rollup -c && api-extractor run --local && rm -r dist/temp/",
"dev": "rollup -c --watch --watch.onEnd \"npx api-extractor run --local && rm -r dist/temp/\"",
"buildNoTypes": "rollup -c && rm -r dist/temp/",
"devNoTypes": "rollup -c --watch --watch.onEnd \"rm -r dist/temp/\""
},
"files": [
"dist"
],
"devDependencies": {
"@microsoft/api-extractor": "^7.34.4",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"rollup": "^3.20.2",
"tslib": "^2.5.0",
"typescript": "^5.0.3"
}
}