-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.64 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
53
54
55
56
{
"name": "@cccode/fxr",
"version": "18.0.2",
"description": "JavaScript library for creating and editing FXR files for Dark Souls 3, Sekiro, Elden Ring, and Armored Core 6.",
"author": "CCCode",
"type": "module",
"main": "./dist/esm/fxr.js",
"module": "./dist/esm/fxr.js",
"exports": {
"import": "./dist/esm/fxr.js",
"require": "./dist/cjs/fxr.js"
},
"types": "./dist/esm/fxr.d.ts",
"scripts": {
"build:yaml": "node build/run.js",
"build:sort-props": "node build/sort_props.js",
"build:ts:esm": "npx tsc --p tsconfig-esm.json",
"build:ts:cjs": "npx tsc --p tsconfig-cjs.json && echo {\"type\":\"commonjs\"} > dist/cjs/package.json",
"build:ts": "npm-run-all --parallel build:ts:*",
"build": "npm-run-all build:yaml build:ts",
"watch:dist": "npx tsc --p tsconfig-esm.json --watch",
"watch:src": "node build/watch.js",
"watch": "npm-run-all --parallel watch:*",
"docs": "npm run build:yaml && npx typedoc --tsconfig tsconfig.json && node build/docs.js"
},
"files": [
"/dist"
],
"keywords": [
"elden-ring",
"sekiro",
"dark-souls-3",
"armoredcore6",
"typescript",
"modding-tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EvenTorset/fxr.git"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/EvenTorset/fxr/issues"
},
"homepage": "https://fxr-docs.pages.dev/",
"devDependencies": {
"@types/node": "^22.9.0",
"cheerio": "^1.0.0",
"chokidar": "^4.0.1",
"npm-run-all2": "^7.0.1",
"typedoc": "^0.27.2",
"typedoc-github-theme": "^0.2.0",
"typescript": "^5.7.2",
"yaml": "^2.6.0"
}
}