-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.81 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.81 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "isaacscript",
"version": "6.0.2",
"description": "A command line tool for managing Isaac mods written in TypeScript.",
"keywords": [
"isaac",
"mod",
"rebirth",
"afterbirth",
"repentance",
"typescript",
"lua"
],
"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",
"bin": {
"isaacscript": "./dist/main.js"
},
"files": [
"custom-stage",
"dist",
"file-templates",
"isaacscript-watcher",
"plugins",
"schemas"
],
"scripts": {
"build": "tsx ./scripts/build.ts",
"lint": "tsx ./scripts/lint.ts",
"start": "tsx ./src/main.ts",
"test": "tsx --test \"src/**/*.test.ts\""
},
"dependencies": {
"@commander-js/extra-typings": "14.0.0",
"@zamiell/sync-directory": "6.0.5",
"ajv": "8.18.0",
"chalk": "5.6.2",
"commander": "14.0.3",
"complete-common": "2.21.0",
"complete-node": "16.4.0",
"figlet": "1.9.2-beta.0",
"jsonc-parser": "3.3.1",
"klaw-sync": "7.0.0",
"moment": "2.30.1",
"prompt": "1.3.0",
"source-map": "0.7.6",
"source-map-support": "0.5.21",
"xml2js": "0.6.2",
"yaml": "2.8.2"
},
"devDependencies": {
"@types/figlet": "1.7.0",
"@types/klaw-sync": "6.0.5",
"@types/prompt": "1.1.9",
"@types/source-map-support": "0.5.10",
"@types/xml2js": "0.4.14",
"ts-json-schema-generator": "2.9.0",
"typescript-eslint": "8.57.1"
},
"peerDependencies": {
"typescript": ">= 5.0.0",
"typescript-to-lua": ">= 1.0.0"
},
"peerDependenciesMeta": {
"typescript-to-lua": {
"optional": true
}
}
}