-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.85 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "poi-plugin-tsundb",
"version": "0.0.20",
"description": "TsunDB data submission plugin for Poi",
"keywords": [
"kancolle",
"poi",
"poi-plugin",
"tsundb"
],
"license": "MIT",
"author": {
"name": "gakada",
"url": "https://github.com/gakada"
},
"contributors": [
"sorewachigauyo (https://github.com/sorewachigauyo)"
],
"homepage": "https://github.com/kcwiki/poi-plugin-tsundb#readme",
"bugs": "https://github.com/kcwiki/poi-plugin-tsundb/issues",
"repository": "kcwiki/poi-plugin-tsundb",
"main": "dist/index.js",
"files": [
"dist",
"i18n"
],
"scripts": {
"format": "prettier --log-level warn --write '**/*.{js,json,md,ts,yaml,yml}'",
"lint": "eslint . --ext ts --fix",
"build": "rm -rf dist* && tsc && tsc -b tsconfig.test.json && cp package.json dist-test && cp -r test/data dist-test/test",
"test": "yarn format && yarn lint && yarn build && TSUNDB_API_URL=http://localhost:12345 node dist-test/test",
"prepack": "yarn test",
"up": "yarn upgrade --latest"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.7",
"@types/node-fetch": "^2.6.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"body-parser": "^1.20.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^4.22.0",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redux": "^4.2.1",
"typescript": "^5.1.0"
},
"poiPlugin": {
"title": "Plugin.Title",
"description": "Plugin.Description",
"icon": "fa/pie-chart",
"priority": 100
}
}