-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.46 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "stalker-xrf-engine",
"version": "1.0.0",
"author": "Neloreck",
"repository": "https://github.com/xray-forge/stalker-xrf-engine",
"private": true,
"scripts": {
"cli": "ts-node -P ./cli/tsconfig.json cli/run.ts",
"setup": "git submodule update --init --recursive",
"verify": "ts-node -P ./cli/tsconfig.json cli/run.ts verify project",
"build": "ts-node -P cli/tsconfig.json cli/run.ts build",
"pack:mod": "ts-node -P cli/tsconfig.json cli/run.ts pack mod -c -o",
"pack:game": "ts-node -P cli/tsconfig.json cli/run.ts pack game -c -o",
"watch:scripts": "tstl -P ./cli/build/tsconfig.scripts.json --watch",
"watch:scripts-optimized": "npx cross-env NO_LUA_LOGS=true tstl -P ./cli/build/tsconfig.scripts.json --watch",
"typecheck": "tstl -P ./cli/build/tsconfig.scripts.json --noEmit",
"format": "prettier --write \"**/*.(js|ts|tsx|md)\" \"!cli/bin/**/*\" && npm run lint -- --fix && npm run cli format ltx",
"lint": "eslint . --ext .ts,.tsx,.js -c cli/lint/.eslintrc.base.json --cache --cache-location target/eslint/cache.json",
"lint:strict": "eslint . --ext .ts,.tsx,.js -c cli/lint/.eslintrc.strict.json",
"test": "jest",
"help": "ts-node -P ./cli/tsconfig.json cli/run.ts -h"
},
"dependencies": {
"xray16": "1.2.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/ini": "^4.1.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-to-lua/language-extensions": "^1.19.0",
"chalk": "4.1.2",
"commander": "^12.1.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsdoc": "^48.10.2",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^3.2.0",
"fast-xml-parser": "^4.4.1",
"fengari": "0.1.4",
"iconv-lite": "^0.6.3",
"ini": "^4.1.3",
"jest": "^29.7.0",
"jsdom": "^24.1.1",
"jsx-xml": "^0.2.3",
"lua-types": "^2.13.1",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"steam-path": "^1.0.2",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-to-lua": "^1.28.1"
},
"bin": {
"xrf": "./cli/run.ts"
},
"jest": {
"preset": "./cli/test/jest.config.ts"
}
}