-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 905 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
{
"name": "typescript-to-gdscript",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint --fix src",
"build": "tsc && node copy_defs.js && node copy_extends.js",
"start": "npm run build && node dist/index.js",
"local-link": "npm run build && sudo npm link"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"bin": {
"tstgd": "./dist/index.js"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.2",
"@types/yargs": "^17.0.33",
"eslint": "^9.11.1",
"jsonc-parser": "^3.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"dependencies": {
"@prettier/sync": "^0.5.2",
"execa": "^9.4.0",
"fast-xml-parser": "^4.5.0",
"prettier": "^3.3.3",
"yargs": "^17.7.2"
}
}