This repository has been archived by the owner on Nov 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "nuxtron",
"version": "0.3.1",
"description": "⚡ Nuxt.js + Electron ⚡",
"repository": "git@github.com:saltyshiomix/nuxtron.git",
"author": "Shiono Yoshihide <shiono.yoshihide@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/saltyshiomix/nuxtron",
"keywords": [
"electron",
"nuxt",
"nuxtjs",
"nuxt.js",
"vue",
"vuejs",
"vue.js",
"nuxtron"
],
"bugs": {
"url": "https://github.com/saltyshiomix/nuxtron/issues",
"email": "shiono.yoshihide@gmail.com"
},
"files": [
"bin",
"examples"
],
"bin": {
"nuxtron": "bin/nuxtron.js"
},
"scripts": {
"predev": "npm run build",
"dev": "node dev",
"prebuild": "rimraf bin",
"build": "rollup -c",
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-typescript": "^7.12.1",
"arg": "^4.1.3",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"delay": "^4.4.0",
"fs-extra": "^9.0.1",
"webpack": "^5.2.0",
"webpack-merge": "^5.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.2",
"@types/node": "^14.14.5",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.5"
}
}