-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.34 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
82
83
84
85
86
87
{
"name": "poi-plugin-report",
"version": "9.0.0",
"description": "Report ship creating info and drop info, and so on.",
"main": "index.js",
"packageManager": "pnpm@10.28.0",
"files": [
"i18n",
"index.js",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"lint": "eslint .",
"prepack": "tsdown",
"postpublish": "git clean -fd -- index.js && git checkout .",
"smoke": "node scripts/smoke-load.cjs",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "tsdown && vitest run",
"test:coverage": "tsdown && vitest run --coverage",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poooi/plugin-report.git"
},
"author": {
"name": "Magica",
"link": "https://github.com/magicae"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poooi/plugin-report/issues"
},
"homepage": "https://github.com/poooi/plugin-report#readme",
"poiPlugin": {
"title": "Data Report",
"description": "Report data to database(http://db.kcwiki.moe)",
"icon": "fa/pie-chart",
"priority": 100,
"apiVer": {
"10.3.99": "4.5.0"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@eslint/js": "^10.0.1",
"@storybook/react-vite": "^10.4.6",
"@types/lodash": "^4.17.21",
"@types/node": "^24.0.0",
"@types/node-fetch": "^2.6.13",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"husky": "^3.0.8",
"kcsapi": "^1.260604.0",
"lint-staged": "^9.4.2",
"lodash": "^4.18.1",
"prettier": "^3.9.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"storybook": "^10.4.6",
"tsdown": "^0.22.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.62.1",
"vitest": "^4.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}