-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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
{
"name": "electron-uikit",
"version": "1.0.0",
"private": true,
"description": "UI kit for Electron. e.g. titlebar, contextmenu, notification, etc.",
"license": "MIT",
"author": "Alex Wei<https://github.com/alex8088>",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "prettier --write .",
"lint": "eslint --ext .ts packages/*/src/**",
"typecheck": "tsc --noEmit",
"play": "pnpm run -C packages/playground dev",
"play:preload": "pnpm run -C packages/playground dev:preload",
"build:core": "pnpm run -C packages/core build",
"build:contextmenu": "pnpm run -C packages/contextmenu build",
"build:notification": "pnpm run -C packages/notification build",
"build:titlebar": "pnpm run -C packages/titlebar build",
"build:toast": "pnpm run -C packages/toast build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.19.34",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"electron": "^31.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.1",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-rm": "^1.0.2",
"typescript": "^5.4.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"electron"
]
}
}
}