-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "retro",
"version": "0.1.0-beta",
"description": "A Vim Based Editor for the 30th Century",
"main": "main.js",
"scripts": {
"start": "./node_modules/electron/cli.js main.js",
"build": "NODE_ENV='production' ./node_modules/webpack/bin/webpack.js .",
"dev": "$(npm bin)/webpack . -w",
"pack:osx": "./node_modules/electron-packager/cli.js ./ Retro --plataform=darwin --out=~/Desktop --overwrite --icon=./assets/images/logo-128.icns",
"pack:all": "./node_modules/electron-packager/cli.js ./ Retro --all --out=~/Desktop --overwrite --icon=./assets/images/logo-128.icns",
"lint": "$(npm bin)/eslint --ext .js src/",
"test": "npm run lint",
"prepublish": "npm run build && npm run test"
},
"repository": "https://github.com/raphamorim/retro",
"keywords": [
"retro",
"vim",
"editor",
"core"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/preset-env": "7.16.11",
"@babel/register": "7.17.7",
"babel-loader": "8.0.5",
"babel-polyfill": "6.26.0",
"electron-packager": "8.7.1",
"env-paths": "1.0.0",
"eslint": "3.13.0",
"locate-path": "2.0.0",
"process-nextick-args": "1.0.7",
"universalify": "0.1.0",
"util-deprecate": "1.0.2"
},
"dependencies": {
"electron": "18.3.7",
"electron-settings": "4.0.2",
"fs.notify": "0.0.4",
"fuse.js": "3.2.0",
"has-flag": "3.0.0",
"js-beautify": "1.6.4",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
}
}