forked from ts-defold/types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
46
{
"name": "@ts-defold/types",
"version": "1.9.8",
"description": "TypeScript definitions for Defold",
"repository": "github:thinknathan/ts-defold-types",
"keywords": [
"typescript",
"lua",
"defold"
],
"author": "Justin Walsh (https://thejustinwalsh.com/)",
"license": "MIT",
"types": "index.d.ts",
"files": [
"**/*.d.ts"
],
"scripts": {
"build": "type-gen && yarn run patch && yarn run prettier && yarn run lint",
"check": "tsc --noEmit",
"lint": "eslint ./index.d.ts --fix",
"patch": "node patch.mjs",
"prepublishOnly": "yarn run build && yarn run check",
"prettier": "prettier \"./index.d.ts\" --write"
},
"ts-defold": {
"channel": "stable",
"version": "latest"
},
"dependencies": {
"lua-types": "^2.10.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ts-defold/type-gen": "^0.5.2",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"prettier": "^3.1.0",
"typescript": "5.7.2",
"typescript-eslint": "^8.0.0",
"typescript-to-lua": "~1.29.1"
},
"peerDependencies": {
"typescript-to-lua": ">=1.10.0"
}
}