-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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": "scp-secret-laboratory-translations-generator",
"version": "1.0.0",
"description": "A piece of code to generate updated SCP:SL translations.",
"main": "distrib/scripts/generate-updated-translations.js",
"scripts": {
"installDependencies": "npm i",
"buildTypeScript": "npx tsc",
"build": "npm run installDependencies && npm run buildTypeScript",
"buildExe": "npx nexe distrib --build",
"buildFull": "npm run build && npm run buildExe",
"generateUpdatedTranslations": "npm run build && node distrib/scripts/generate-updated-translations.js",
"clearWorkDirectory": "npm run build && node distrib/scripts/clear-output.js"
},
"keywords": [
"scp",
"secret",
"lab",
"laboratory",
"sl",
"scpsl",
"secure",
"contain",
"protect",
"special",
"containment",
"procedures",
"translations",
"generator",
"generation",
"generate"
],
"author": {
"name": "Esoteric Enderman",
"url": "https://github.com/EsotericEnderman",
"email": "esotericenderman@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.16.12",
"nexe": "^4.0.0-rc.6",
"typescript": "^5.4.5"
},
"type": "commonjs"
}