-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "discord-syntax-highlighting",
"version": "0.0.1",
"private": true,
"publishConfig": {
"access": "restricted"
},
"engines": {
"node": ">=18"
},
"scripts": {
"check": "tsc -b",
"watch": "pnpm check -- -w",
"build": "vite build",
"lint": "eslint --max-warnings 0 --cache .",
"dev": "vite"
},
"devDependencies": {
"@cherryblossom/eslint-config": "17.0.0-beta.3",
"@types/eslint": "^8.4.10",
"@types/node": "~18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.2",
"highlight.js": "11.7.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "~4.9.4",
"vite": "^4.5.2",
"vite-plugin-html": "^3.2.0"
}
}