forked from sindresorhus/electron-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.13 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
{
"name": "@la-jarre-a-son/electron-store",
"version": "9.0.0",
"description": "Simple data persistence for your Electron app or module - Save and load user settings, 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": "ava && xo && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"keywords": [
"electron",
"store",
"app",
"config",
"storage",
"conf",
"configuration",
"settings",
"preferences",
"json",
"data",
"persist",
"persistent",
"save"
],
"dependencies": {
"conf": "npm:@la-jarre-a-son/[email protected]",
"type-fest": "^2.17.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"ava": "^2.4.0",
"electron": "^26.2.0",
"execa": "^5.0.0",
"tsd": "^0.29.0",
"xo": "^0.38.2"
},
"xo": {
"envs": [
"node",
"browser"
],
"rules": {
"import/extensions": "off"
}
}
}