This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
generated from kernel-addons/PluginTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.6 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
{
"name": "powercord-compatibility",
"version": "1.0.0",
"description": "A Kernel compatibility layer for powercord plugins and themes.",
"main": "index.js",
"scripts": {
"watch:main": "webpack --progress --env=mode=main --env=minify=true --watch",
"watch:preload": "webpack --progress --env=mode=preload --env=minify=true --watch",
"watch:renderer": "webpack --progress --env=mode=renderer --env=minify=true --watch",
"build:renderer": "webpack --progress --env=mode=renderer --env=minify=true",
"build:main": "webpack --progress --env=mode=main --env=minify=true",
"build:preload": "webpack --progress --env=mode=preload --env=minify=true",
"build": "pnpm run build:renderer && pnpm run build:main && pnpm run build:preload",
"initialize": "pnpm install --production",
"dev": "node scripts/devserver.mjs"
},
"author": "Strencher & eternal",
"license": "Unlicensed",
"devDependencies": {
"@swc/core": "^1.2.124",
"@types/lodash": "^4.14.176",
"@types/node": "^17.0.41",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"asar": "^3.1.0",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.6.0",
"mini-css-extract-plugin": "^2.5.3",
"sass-loader": "^12.6.0",
"swc-loader": "^0.1.15",
"webpack": "^5.69.0",
"webpack-cli": "^4.10.0",
"ws": "^8.5.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"node-watch": "^0.7.3",
"sass": "^1.43.4",
"sucrase": "^3.21.0"
}
}