-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
{
"name": "electron-json-settings-store",
"productName": "Electron JSON Settings Store",
"version": "1.0.3",
"description": "Persistent user settings for Electron apps with async file reading, built-in JSON schema validation and RAM cached settings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"publish": "npm publish",
"lint": "xo",
"test-electron": "npm run build && electron ./sample-app/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelcarreira/electron-json-settings-store.git"
},
"keywords": [
"json",
"electron",
"app",
"settings",
"config",
"storage",
"conf",
"configuration",
"preferences",
"json",
"data",
"persist",
"persistent",
"save"
],
"author": "Samuel Carreira <samuelcarreira@outlook.com> (http://www.samuelcarreira.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelcarreira/electron-json-settings-store/issues"
},
"homepage": "https://github.com/samuelcarreira/electron-json-settings-store#readme",
"devDependencies": {
"electron": "^10.1.2",
"typescript": "^4.0.3",
"xo": "^0.33.1"
},
"engines": {
"node": ">=12.0"
},
"dependencies": {
"fastest-validator": "^1.7.0"
},
"files": [
"dist/**/*"
]
}