-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.55 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
{
"name": "zxspectrum-frontend-meta-generator",
"version": "0.7.1",
"description": "ZXSpectrum Game Frontend Config Generator using ZXInfo API",
"exports": "./dist/start.js",
"type": "module",
"scripts": {
"start": "node --no-warnings --loader ts-node/esm ./src/start.ts",
"build": "npm run cleanup && npx tsc -p ./tsconfig.build.json && npx rollup --config rollup.config.js",
"package": "npm run build && npx pkg ./dist/zxgenerator.js -t node16-macos-x64,node16-linux,node16-win --out-path ./dist && cp ./dist/zxgenerator-linux ./dist/zxgenerator && gzip ./dist/zxgenerator-linux && gzip ./dist/zxgenerator-macos",
"install-package": "sudo cp ./dist/zxgenerator /usr/local/bin && sudo chmod +x /usr/local/bin/zxgenerator",
"cleanup": "rm -rf ./dist && sudo rm -f /usr/local/bin/zxgenerator",
"version": "node ./version-bump.js"
},
"keywords": [
"spectrum",
"zx",
"zxinfo",
"api",
"pegasus",
"pegasus-frontend"
],
"engines": {
"node": ">=16.0.0"
},
"author": "Lee McCormick (leemmccormick@gmail.com)",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/cli-progress": "^3.11.0",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/md5": "^2.3.2",
"@types/mime-types": "^2.1.1",
"@types/promptly": "^3.0.2",
"@types/shelljs": "^0.8.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/parser": "^5.29.0",
"appdata-path": "^1.0.0",
"axios": "^0.27.2",
"boxen": "7.0.0",
"caxa": "^2.1.0",
"chalk": "5.0.1",
"cli-progress": "^3.11.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"del": "^6.1.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"get-all-files": "^4.1.0",
"image-size": "^1.0.1",
"js-ini": "^1.5.1",
"logging": "^3.3.0",
"md5": "^2.3.0",
"mime-types": "^2.1.35",
"moment": "^2.29.3",
"nanoid": "^4.0.0",
"open": "^8.4.0",
"pkg": "^5.7.0",
"promptly": "^3.2.0",
"rollup": "^2.75.7",
"shelljs": "^0.8.5",
"terminal-image": "^1.2.1",
"time-stamp": "^2.2.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2",
"wikipedia": "^1.1.9",
"xmlbuilder2": "^3.0.2"
}
}