-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "choice4genesis",
"version": "0.14.4",
"description": "A ChoiceScript clone that generates SGDK-compatible C source for the Sega Genesis ",
"main": "index.js",
"targets": {
"main": false,
"main-cli": {
"context": "node",
"source": "index.js",
"distDir": "dist",
"isLibrary": true,
"includeNodeModules": {
"yargs": false
}
},
"editor-frontend": {
"source": "editor/front/index.html",
"distDir": "editor/front/dist"
}
},
"scripts": {
"test": "jest",
"build:cli": "parcel build --target main-cli",
"build:frontend": "parcel build --target editor-frontend",
"test_watch": "jest --watch",
"transpile_test": "node . transpile test",
"transpile_compile_test": "node . transpile test -- compile",
"compile_run_test": "node . transpile test -- compile emulate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haroldo-ok/choice4genesis.git"
},
"keywords": [
"choose-your-own-adventure",
"sega-genesis",
"homebrew",
"sgdk",
"compiler",
"visual-novel-engine"
],
"author": "Haroldo de Oliveira Pinheiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/haroldo-ok/choice4genesis/issues"
},
"homepage": "https://github.com/haroldo-ok/choice4genesis#readme",
"devDependencies": {
"buffer": "^5.7.1",
"jest": "^29.0.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@monaco-editor/react": "^4.4.6",
"@picocss/pico": "^1.5.6",
"axios": "^1.2.1",
"chalk": "^4.1.2",
"express": "^4.21.0",
"figlet": "^1.5.2",
"font-awesome": "^4.7.0",
"fs-extra": "^10.1.0",
"http-proxy-middleware": "^2.0.6",
"imagemagick": "^0.1.3",
"lodash": "^4.17.21",
"node-menu": "^1.3.2",
"open": "^8.4.2",
"open-file-explorer": "^1.0.2",
"parcel": "^2.8.1",
"parsimmon": "^1.18.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"usehooks-ts": "^2.9.1",
"yargs": "^17.5.1"
}
}