-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 919 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
{
"name": "discord-mod-compiler",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"bin": {
"discord-mod-compiler": "dist/cli.js"
},
"scripts": {
"test": "tsc && node ./test/check-converters.js",
"cli": "tsc && node dist/cli.js",
"cli-debug": "tsc && node --inspect dist/cli.js",
"cli-nobuild": "node dist/cli.js",
"build": "tsc"
},
"keywords": [],
"license": "GPL-3.0",
"type": "module",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/generator": "^7.24.7",
"@babel/parser": "^7.24.7",
"@babel/plugin-transform-destructuring": "^7.24.7",
"@babel/types": "^7.24.7",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"typescript": "^5.5.2"
}
}