This repository was archived by the owner on Jan 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "@fernforestgames/godot-resource-parser",
"version": "0.1.3",
"description": "Parser for Godot 4 .tscn and .tres files",
"author": "Justin Spahr-Summers <[email protected]> (https://fernforestgames.com)",
"license": "MIT",
"homepage": "https://github.com/fernforestgames/godot-resource-parser",
"repository": {
"type": "git",
"url": "git+https://github.com/fernforestgames/godot-resource-parser.git"
},
"type": "module",
"scripts": {
"build": "tsc && shx chmod +x dist/cli.js",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"bin": {
"godot-resource-parser": "dist/cli.js"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"files": [
"dist"
],
"keywords": [
"typescript",
"godot"
],
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"jest": "^30.2.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2"
}
}