-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "electron-shared-state",
"version": "1.1.0",
"description": "❤️ easily sharing state across electron main and renderer processes.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"directories": {
"lib": "lib"
},
"homepage": "https://github.com/shadeofgod/electron-shared-state#readme",
"repository": "github:shadeofgod/electron-shared-state",
"bugs": "https://github.com/shadeofgod/electron-shared-state/issues",
"scripts": {
"build": "tsup lib/index.ts --minify --dts --format esm,cjs",
"example": "electron example/main.js",
"prepare": "is-ci || husky install",
"test": "playwright test"
},
"keywords": [
"electron",
"share",
"state",
"sync",
"process",
"store"
],
"author": "zoubingwu",
"license": "MIT",
"dependencies": {
"immer": "^9.0.19"
},
"peerDependencies": {
"electron": "*"
},
"devDependencies": {
"@playwright/test": "^1.31.2",
"@swc/core": "^1.3.39",
"@types/node": "^18.15.0",
"electron": "23.1.3",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"playwright": "^1.31.2",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"spectron": "^19.0.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"files": [
"dist"
]
}