-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
48
49
50
51
52
{
"name": "@eatonfyi/ljarchive",
"version": "0.1.2",
"description": "A JS parser for LJArchive files",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"/dist",
"README.md"
],
"scripts": {
"run": "node --import=tsimp src/index.ts",
"demo": "node --import=tsimp src/test.ts",
"build": "pkgroll",
"package": "pkgroll --minify --clean-dist",
"format": "prettier --config prettier.config.js 'src/**/*.ts' --write",
"test": "ava"
},
"author": "Jeff Eaton <jeff@eaton.fyi> (https://eaton.fyi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eaton/ljarchive"
},
"devDependencies": {
"@types/node": "^20.14.10",
"ava": "^6.2.0",
"fs-jetpack": "^5.1.0",
"pkgroll": "^2.6.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"tsimp": "^2.0.12",
"typescript": "^5.7.2"
},
"dependencies": {
"@sindresorhus/is": "^7.0.1",
"@thi.ng/leb128": "^3.1.29",
"dayjs": "^1.11.13",
"fast-xml-parser": "^4.5.1",
"zod": "^3.24.1"
}
}