-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.95 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
59
60
61
62
63
{
"name": "plugin-template",
"version": "1.0.0",
"description": "A plugin template",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "replugged build plugin",
"watch": "pnpm build --watch",
"dev": "pnpm watch",
"bundle": "replugged bundle plugin",
"release": "replugged release plugin",
"build-and-bundle": "pnpm run build --all --no-install && pnpm run bundle --all",
"check": "tsc --noEmit",
"prettier:check": "prettier ./plugins ./scripts --check",
"eslint:check": "eslint ./plugins ./scripts",
"prettier:fix": "prettier ./plugins ./scripts --write",
"eslint:fix": "eslint ./plugins ./scripts --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@electron/asar": "^3.2.4",
"@octokit/openapi-types": "^14.0.0",
"@octokit/types": "^8.2.1",
"@types/lodash": "^4.14.195",
"@types/node": "^18.16.17",
"@types/prompts": "^2.4.4",
"@types/react": "^18.2.12",
"@types/semver": "^7.5.0",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chalk": "^5.3.0",
"discord-types": "^1.3.3",
"eslint": "^8.42.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"react-dnd": "^16.0.1",
"replugged": "^4.8.0",
"semver": "^7.5.4",
"tsx": "^3.12.7",
"typescript": "^4.9.5",
"ws": "^8.13.0"
},
"dependencies": {
"@octokit/rest": "^19.0.11",
"@primer/react": "^35.25.1",
"@primer/styled-octicons": "^17.12.0",
"deepmerge": "^4.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simple-markdown": "^0.7.3",
"styled-components": "^5.3.11"
}
}