forked from swlegion/tts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "swlegion-tts-mod",
"scripts": {
"compile": "npx ts-node tool/main.ts compile mod/src/StarWarsLegion.json dist/StarWarsLegion.json",
"extract": "npx ts-node tool/main.ts extract dist/StarWarsLegion.json mod/src",
"generate": "npx ts-node tool/main.ts generate",
"lint": "prettier --ignore-path .prettierignore --list-different src tool contrib && eslint src tool --ext .ts",
"lint:fix": "prettier --ignore-path .prettierignore --write src tool contrib && eslint src tool --fix --ext .ts",
"lint:lua": "luacheck mod/src",
"start": "npx ts-node tool/main.ts develop mod/src/StarWarsLegion.json dist/StarWarsLegion.json",
"validate": "ts-node ./tool/validate.ts"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/swlegion/tts/issues"
},
"homepage": "https://github.com/swlegion/tts",
"devDependencies": {
"@matanlurey/tts-editor": "github:matanlurey/tts-editor#dist",
"@matanlurey/tts-expander": "github:matanlurey/tts-expander#dist",
"@matanlurey/tts-runner": "github:matanlurey/tts-runner#dist",
"@matanlurey/tts-save-files": "github:matanlurey/tts-save-format",
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^8.1.2",
"@types/minimist": "^1.2.2",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.20.27",
"@types/node-fetch": "^2.5.12",
"@types/shelljs": "^0.8.9",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"ajv-cli": "^5.0.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"detect-newline": "^3.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"figlet": "^1.5.2",
"fs-extra": "^8.1.0",
"image-size": "^1.0.0",
"is-png": "^2.0.0",
"minimist": "^1.2.6",
"mkdirp": "^0.5.5",
"node-fetch": "^3.1.1",
"nodemon": "^2.0.12",
"path": "^0.12.7",
"prettier": "^2.4.1",
"sanitize-filename": "^1.6.3",
"shelljs": "^0.8.5",
"ts-node": "^9.0.0",
"typescript": "^3.9.10"
},
"dependencies": {
"make-promises-safe": "^5.1.0"
}
}