-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
46
47
{
"name": "plugins",
"version": "1.0.0",
"description": "what?",
"private": true,
"engines": {
"node": ">=19.7.0"
},
"scripts": {
"build": "tsx scripts/build.ts",
"watch": "pnpm build --watch",
"dev": "pnpm watch",
"bundle": "tsx scripts/bundle.ts",
"build-and-bundle": "pnpm run build --no-install && pnpm run bundle",
"check": "tsc --noEmit",
"prettier:check": "prettier ./plugins ./scripts --check",
"eslint:check": "eslint ./plugins/**/*.ts* ./scripts/*.ts",
"prettier:fix": "prettier ./plugins ./scripts --write",
"eslint:fix": "eslint ./plugins/**/*.ts* ./scripts/*.ts --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"author": "Alyxia Sother",
"devDependencies": {
"@electron/asar": "^3.2.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.7",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"esbuild": "^0.15.18",
"esbuild-sass-plugin": "^2.8.0",
"eslint": "^8.36.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.7",
"replugged": "4.5.1",
"tsx": "^3.12.6",
"typescript": "^4.9.5"
},
"dependencies": {
"deepmerge": "^4.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}