generated from replugged-org/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.93 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
{
"name": "@sckt/replugged-plugins",
"version": "0.0.0",
"description": "my Replugged plugins",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build:dev": "replugged build plugin --no-reload",
"build:dev:bundle": "replugged bundle plugin --no-reload",
"build:prod": "replugged build plugin --no-reload --production",
"build:prod:bundle": "replugged bundle plugin --no-reload --production",
"watch:dev": "replugged build plugin --watch",
"watch:prod": "replugged build plugin --watch --production",
"release": "replugged release",
"check": "tsc --noEmit",
"prettier:check": "prettier ./plugins --check",
"eslint:check": "eslint ./plugins",
"prettier:fix": "prettier ./plugins --write",
"eslint:fix": "eslint ./plugins --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": "MIT",
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.2",
"@lezer/highlight": "^1.2.0",
"@mdi/js": "^7.4.47",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/spotify-api": "^0.0.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"codemirror": "^6.0.1",
"discord-api-types": "^0.37.90",
"eslint": "^8.57.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.34.3",
"idb-keyval": "^6.2.1",
"prettier": "^3.3.2",
"replugged": "^4.8.3",
"simple-icons": "^10.4.0",
"style-mod": "^4.1.2",
"typescript": "^5.5.2"
},
"dependencies": {
"@sckt/translate": "^1.0.8"
}
}