forked from ts-defold/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@ts-defold/library",
"version": "0.1.3",
"description": "Type library for Defold",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "bin/library.js",
"files": [
"lib",
"bin",
"!/**/*.js.map"
],
"scripts": {
"prepublishOnly": "npm run build",
"resolve": "npm run build && ./bin/library.js resolve --src ./tests/resolve --out ./tests/resolve/@types",
"publish": "npm run build && ./bin/library.js publish --src ./packages",
"build": "npm run clean && tsc",
"clean": "tsc --build --clean",
"dev": "npm run build && DEV=true node ./bin/library.js"
},
"author": "Justin Walsh",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.9",
"await-to-js": "^3.0.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.5",
"xml2js": "^0.4.23",
"yargs": "^17.2.1"
},
"devDependencies": {
"@ts-defold/types": "^1.2.4",
"@types/adm-zip": "^0.4.34",
"@types/node": "^14.17.29",
"@types/node-fetch": "^2.5.12",
"@types/semver": "^7.3.9",
"@types/xml2js": "^0.4.9",
"@types/yargs": "^17.0.4",
"typescript": "^4.4.4",
"typescript-to-lua": "1.1.1"
},
"peerDependencies": {
"typescript-to-lua": "^1.1.1"
}
}