-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.71 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.71 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
{
"name": "dream-engine",
"version": "1.0.0",
"description": "AI Engine created based on the prototype that worked as proof of concept, now written as an electron NodeJS app that can be used to create stories and mix and match them.",
"homepage": "https://github.com/onzag/rstory#readme",
"bugs": {
"url": "https://github.com/onzag/rstory/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onzag/rstory.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "js/electron.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron-forge start",
"web": "node js/web-version.js",
"start:debug": "ELECTRON_ENABLE_LOGGING=1 NODE_OPTIONS='--trace-uncaught --trace-warnings' electron --inspect=9229 .",
"build:codemirror": "esbuild js/codemirror/build.js --bundle --outfile=js/codemirror/bundle.js",
"package": "electron-forge package",
"make": "electron-forge make",
"build-types": "node js/util/build-types.js",
"build-home": "node js/util/build-dreamengine-home.js && node js/util/build-types.js --remote-only"
},
"devDependencies": {
"@electron-forge/cli": "^7.10.2",
"@electron-forge/maker-deb": "^7.10.2",
"@electron-forge/maker-rpm": "^7.10.2",
"@electron-forge/maker-squirrel": "^7.10.2",
"@electron-forge/maker-zip": "^7.10.2",
"@electron-forge/plugin-auto-unpack-natives": "^7.10.2",
"@electron-forge/plugin-fuses": "^7.10.2",
"@electron/fuses": "^1.8.0",
"electron": "^39.2.7"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.1",
"typescript": "^6.0.3"
},
"optionalDependencies": {
"express": "^5.2.1",
"selfsigned": "^5.5.0"
}
}