This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
generated from Flysoft-Studio/QQNTim-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.52 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": "qqntim-plugin-markdown",
"private": true,
"version": "1.0.2",
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "TS_NODE_FILES=1 TS_NODE_TRANSPILE_ONLY=1 NODE_ENV=development ts-node ./build.ts",
"build": "TS_NODE_FILES=1 TS_NODE_TRANSPILE_ONLY=1 NODE_ENV=production ts-node ./build.ts",
"install:win": "powershell -ExecutionPolicy Unrestricted -File ./scripts/install.ps1",
"install:linux": "chmod +x ./scripts/install.sh && ./scripts/install.sh",
"start:win": "powershell -ExecutionPolicy Unrestricted -File ./scripts/start.ps1",
"start:linux": "chmod +x ./scripts/start.sh && ./scripts/start.sh",
"lint": "tsc && rome check .",
"lint:apply": "rome check . --apply",
"lint:apply-unsafe": "rome check . --apply-unsafe",
"format": "rome format . --write"
},
"devDependencies": {
"@flysoftbeta/qqntim-typings": "^3.1.2",
"@types/katex": "^0.16.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/sanitize-html": "^2.9.0",
"@yarnpkg/sdks": "^3.0.0-rc.48",
"esbuild": "^0.18.12",
"fs-extra": "^11.1.1",
"rome": "^12.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"html-entities": "^2.4.0",
"katex": "^0.16.8",
"markdown-it": "^13.0.1",
"sanitize-html": "^2.11.0"
}
}