-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "@kuankuan/k-markdown-parser",
"version": "1.0.11",
"description": "a Markdown parser",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/* --fix",
"test": "node command/test.mjs",
"build": "tsc && tsc-alias"
},
"repository": {
"type": "git",
"url": "https://gitee.com/kuankuan2007/k-markdown-parser.git"
},
"author": "kuankuan",
"license": "MulanPSL-2.0",
"types": "dist/index.d.ts",
"devDependencies": {
"@kuankuan/eslint-2024": "^1.0.3",
"@rushstack/eslint-patch": "^1.10.1",
"@types/jsonwebtoken": "^9.0.6",
"@types/mysql": "^2.15.26",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.3"
},
"files": [
"dist"
],
"type": "module",
"keywords": [
"markdown",
"parser",
"kuankuan"
]
}