-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "electron-bounds",
"version": "1.0.2",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "Persisted window bounds for Electron.",
"main": "dist/index.js",
"scripts": {
"test": "tsc --noEmit",
"build": "rimraf dist && tsc -p ./tsconfig.json",
"version-package": "changeset version",
"release": "pnpm test && pnpm build && changeset publish"
},
"keywords": [
"electron",
"store",
"bounds",
"window",
"persist",
"save",
"yaml",
"center",
"resize",
"size"
],
"author": "Jacob Bergholtz <[email protected]>",
"homepage": "https://github.com/cuppachino/electron-bounds#readme",
"repository": {
"url": "https://github.com/cuppachino/electron-bounds",
"type": "git"
},
"bugs": {
"url": "https://github.com/cuppachino/electron-bounds/issues"
},
"license": "MIT",
"dependencies": {
"@types/js-yaml": "^4.0.5",
"electron-store": "^8.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"electron": "^12.0.4",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
}
}