forked from hazzard993/love-typescript-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
{
"name": "love-typescript-definitions",
"version": "0.24.3",
"description": "Write LÖVE 2D projects with TypeScript",
"license": "MIT",
"types": "index.d.ts",
"files": [
"docs/**",
"**/**.d.ts"
],
"homepage": "https://github.com/hazzard993/love-typescript-definitions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hazzard993/love-typescript-definitions.git"
},
"bugs": {
"url": "https://github.com/hazzard993/love-typescript-definitions/issues"
},
"scripts": {
"build:doc": "typedoc --excludeExternals --out docs --media media --exclude node_modules/** --tsconfig spec/tsconfig.json typings",
"test": "yarn test:tstl",
"test:tstl": "tstl -p spec/tsconfig.json",
"test:scripts": "node scripts/tuple-check.js",
"lint:prettier": "prettier --check \"**/*.{js,ts,yml,json,md}\" || (echo 'Run `npm run fix:prettier` to fix it.' && exit 1)",
"fix:prettier": "prettier --check --write \"**/*.{js,ts,yml,json,md}\"",
"clean": "rm spec/*.lua"
},
"keywords": [
"love2d",
"love",
"lua",
"typescript"
],
"devDependencies": {
"@types/node": "^13.1.4",
"is-ci": "^2.0.0",
"prettier": "^2.2.1",
"typedoc": "^0.21.9",
"typescript-to-lua": "^0.38.1"
}
}