-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.97 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@bgm38/wiki",
"version": "0.3.3",
"description": "bangumi wiki syntax parser",
"type": "module",
"browser": "./dist/browser.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"prettier": {
"plugins": [
"prettier-plugin-jsdoc"
],
"tsdoc": true,
"printWidth": 100,
"singleQuote": true,
"semi": true,
"trailingComma": "all"
},
"sideEffects": false,
"scripts": {
"format": "prettier -w ./",
"build": "node ./esbuild.js && tsc -p tsconfig.build.json",
"test": "vitest --run",
"prepack": "pnpm run build",
"lint": "eslint ./src",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"packageManager": "pnpm@11.8.0",
"engines": {
"node": ">=22"
},
"lint-staged": {
"*.{md,cjs,mjs,js,jsx,ts,tsx,json,yml,yaml}": [
"prettier --ignore-path ./.prettierignore --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"files": [
"./package.json",
"./dist",
"./src"
],
"repository": "bangumi/wiki-parser",
"author": "",
"license": "MIT",
"homepage": "https://github.com/bangumi/wiki-parser",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^18.2.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-tsdoc": "^0.5.2",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"js-yaml": "^4.3.0",
"lint-staged": "^17.1.0",
"prettier": "^3.9.5",
"prettier-plugin-jsdoc": "^1.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
},
"publishConfig": {
"access": "public"
}
}