-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1.08 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": "isaac-typescript-definitions",
"version": "42.2.0",
"description": "TypeScript definitions for The Binding of Isaac: Repentance.",
"keywords": [
"isaac",
"rebirth",
"afterbirth",
"repentance"
],
"homepage": "https://isaacscript.github.io/",
"bugs": {
"url": "https://github.com/IsaacScript/isaacscript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IsaacScript/isaacscript.git"
},
"license": "GPL-3.0",
"author": "Zamiell",
"type": "commonjs",
"main": "./dist/index",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/build.mts",
"docs": "typedoc",
"lint": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/lint.mts"
},
"dependencies": {
"lua-types": "^2.13.1"
},
"devDependencies": {
"complete-node": "^1.7.4",
"eslint-plugin-sort-exports": "^0.9.1",
"typescript-eslint": "^8.14.0",
"typescript-to-lua": "^1.27.1"
}
}