-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
41 lines (41 loc) · 917 Bytes
/
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": "isaac-lua-polyfill",
"version": "1.1.1",
"description": "Lua polyfills 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": "module",
"main": "./dist/index.js",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "tsx ./scripts/build.ts",
"lint": "tsx ./scripts/lint.ts"
},
"dependencies": {
"complete-common": "^1.0.1",
"isaac-typescript-definitions": "^42.2.0"
},
"devDependencies": {
"complete-node": "^1.7.4",
"typescript-eslint": "^8.17.0"
}
}