Skip to content

Commit 199e503

Browse files
committed
1.0.0
1 parent 145f604 commit 199e503

File tree

1 file changed

+34
-10
lines changed

1 file changed

+34
-10
lines changed

package.json

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Taskr",
3-
"version": "0.4.0",
3+
"version": "1.0.0",
44
"description": "A simple task manager app",
55
"main": "main/index.js",
66
"repository": "https://github.com/bukinoshita/taskr.git",
@@ -17,17 +17,26 @@
1717
},
1818
"build": {
1919
"appId": "taskr",
20-
"files": ["**/*", "!renderer", "renderer/out"],
20+
"files": [
21+
"**/*",
22+
"!renderer",
23+
"renderer/out"
24+
],
2125
"win": {
22-
"target": ["squirrel"],
26+
"target": [
27+
"squirrel"
28+
],
2329
"icon": "main/static/icon.ico"
2430
},
2531
"mac": {
2632
"category": "public.app-category.developer-tools",
2733
"icon": "main/static/icon.icns"
2834
},
2935
"linux": {
30-
"target": ["AppImage", "deb"]
36+
"target": [
37+
"AppImage",
38+
"deb"
39+
]
3140
}
3241
},
3342
"dependencies": {
@@ -63,7 +72,11 @@
6372
"xo": "^0.18.2"
6473
},
6574
"xo": {
66-
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
75+
"extends": [
76+
"prettier",
77+
"prettier/react",
78+
"plugin:react/recommended"
79+
],
6780
"rules": {
6881
"react/no-unescaped-entities": 0,
6982
"react/react-in-jsx-scope": 0,
@@ -75,8 +88,13 @@
7588
"new-cap": 0,
7689
"import/prefer-default-export": 0
7790
},
78-
"ignores": ["node_modules"],
79-
"globals": ["localStorage", "document"]
91+
"ignores": [
92+
"node_modules"
93+
],
94+
"globals": [
95+
"localStorage",
96+
"document"
97+
]
8098
},
8199
"lint-staged": {
82100
"*.js": [
@@ -86,13 +104,19 @@
86104
]
87105
},
88106
"babel": {
89-
"presets": ["next/babel"],
107+
"presets": [
108+
"next/babel"
109+
],
90110
"env": {
91111
"development": {
92-
"plugins": ["inline-dotenv"]
112+
"plugins": [
113+
"inline-dotenv"
114+
]
93115
},
94116
"production": {
95-
"plugins": ["transform-inline-environment-variables"]
117+
"plugins": [
118+
"transform-inline-environment-variables"
119+
]
96120
}
97121
}
98122
}

0 commit comments

Comments
 (0)