-
-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathpackage.json
53 lines (53 loc) · 959 Bytes
/
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
{
"name": "electron-store",
"version": "8.1.0",
"description": "Simple data persistence for your Electron app or module - Save and load user preferences, app state, cache, etc",
"license": "MIT",
"repository": "sindresorhus/electron-store",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"electron",
"store",
"app",
"config",
"storage",
"conf",
"configuration",
"settings",
"preferences",
"json",
"data",
"persist",
"persistent",
"save"
],
"dependencies": {
"conf": "^10.2.0",
"type-fest": "^2.17.0"
},
"devDependencies": {
"ava": "^2.4.0",
"electron": "^12.0.4",
"execa": "^5.0.0",
"tsd": "^0.14.0",
"xo": "^0.38.2"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}