-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 986 Bytes
/
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
{
"name": "rw-parser",
"version": "1.3.2",
"description": "Parses RenderWare DFF and TXD files into usable format!",
"author": "Timic3 & Megadreams",
"license": "GPL-3.0",
"homepage": "https://github.com/Timic3/rw-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Timic3/rw-parser.git"
},
"keywords": [
"gta",
"gtasa",
"san andreas",
"renderware",
"parser",
"rw-parser"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"dxt-js": "0.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"lib",
"src",
"LICENSE",
"README.md",
"package.json",
"tsconfig.json"
]
}