-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 991 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 991 Bytes
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
{
"name": "rw-parser",
"version": "2.0.0",
"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",
"gtavc",
"gtaiii",
"san andreas",
"vice city",
"iii",
"renderware",
"parser",
"rw-parser"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.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"
]
}