-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "remsg",
"description": "A library for parsing and serializing MSG files for the RE Engine.",
"type": "module",
"version": "1.2.1",
"author": "BeeeQueue <adam@haglund.dev>",
"repository": {
"type": "git",
"url": "https://github.com/beeequeue/remsg.git"
},
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=20.19"
},
"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}": [
"prettier --write"
]
},
"files": [
"dist",
"CHANGELOG.md"
],
"exports": {
"default": "./dist/index.mjs"
},
"scripts": {
"build": "tsdown",
"lint": "eslint --flag unstable_native_nodejs_ts_config ",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"dependencies": {
"binary-util": "2.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "7.6.1",
"@changesets/changelog-github": "1.0.0-next.1",
"@changesets/cli": "3.0.0-next.1",
"@tsconfig/node24": "24.0.0",
"@tsconfig/strictest": "2.0.8",
"@types/node": "25.3.2",
"eslint": "10.0.2",
"lint-staged": "16.3.0",
"murmur-hash": "2.0.1",
"prettier": "3.8.1",
"publint": "0.3.17",
"simple-git-hooks": "2.13.1",
"tsdown": "0.21.0-beta.2",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}