-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "remsg",
"description": "A library for parsing and serializing MSG files for the RE Engine.",
"type": "module",
"version": "2.0.1",
"author": "BeeeQueue <adam@haglund.dev>",
"repository": {
"type": "git",
"url": "https://github.com/beeequeue/remsg.git"
},
"license": "MIT",
"packageManager": "pnpm@11.11.0",
"engines": {
"node": ">=22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,json,json5,yaml,yml,css,scss,md}": [
"oxfmt --no-error-on-unmatched-pattern --write"
]
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"lint": "oxlint",
"test": "vitest",
"prepare": "simple-git-hooks"
},
"dependencies": {
"binary-util": "~2.0.5"
},
"devDependencies": {
"@changesets/changelog-github": "1.0.0-next.6",
"@changesets/cli": "3.0.0-next.8",
"@e18e/eslint-plugin": "0.5.1",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/node": "22.20.1",
"lint-staged": "17.0.8",
"murmur-hash": "2.0.1",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"oxlint-tsgolint": "0.24.0",
"publint": "0.3.21",
"simple-git-hooks": "2.13.1",
"tsdown": "0.22.4",
"vitest": "4.1.10"
},
"inlinedDependencies": {
"murmur-hash": "2.0.1"
}
}