-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.37 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.37 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
61
62
63
64
65
{
"name": "folib",
"version": "0.4.1",
"description": "TypeScript bindings for Fallout 2",
"type": "module",
"files": [
"src",
"eslint-config",
"README.md"
],
"exports": {
".": "./src/index.ts",
"./sfall": "./src/sfall/index.ts",
"./rpu/*": "./src/rpu/*.ts",
"./eslint-config": "./eslint-config/index.js"
},
"scripts": {
"generate:eslint": "tsx scripts/generate-eslint-config.ts",
"lint": "eslint src",
"typecheck": "tsc",
"docs:generate": "pnpm --filter folib-docs exec tsx ../docs/generate.ts",
"docs:serve": "pnpm docs:generate && pnpm --filter folib-docs dev",
"docs:build": "pnpm docs:generate && pnpm --filter folib-docs build",
"docs:preview": "pnpm --filter folib-docs preview"
},
"peerDependencies": {
"eslint": "^9.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"typescript-eslint": "^8.0.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"eslint-plugin-unused-imports": {
"optional": true
},
"typescript-eslint": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"eslint": "^9.39.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
],
"overrides": {
"rollup": ">=4.59.0",
"devalue": ">=5.6.3"
}
},
"keywords": [
"Fallout",
"Fallout 2",
"sfall",
"TSSL"
]
}