-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
106 lines (106 loc) · 3.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nekomaid",
"version": "0.3.3",
"description": "A plugin can use Web to manage your server.",
"main": "index.js",
"private": true,
"scripts": {
"test": "eslint",
"start": "vite --port 1234",
"gen": "npm run gen:material:icons && npm run gen:minecraft:language && npm run gen:minecraft:assets && npm run gen:minecraft:icons && npm run gen:minecraft:icons:item && npm run gen:minecraft:icons:list",
"gen:material:icons": "ts-node scripts/generateMaterialIcons.ts",
"gen:minecraft:icons": "minecraft-render client.jar icons/minecraft -w 40 -t 40 -d 13 -A",
"gen:minecraft:icons:list": "ts-node scripts/generateMinecraftIconsList.ts",
"gen:minecraft:assets": "ts-node scripts/generateMinecraftAssets.ts",
"gen:minecraft:icons:item": "ts-node scripts/generateMinecraftAssets.ts itemOnly",
"gen:minecraft:language": "ts-node scripts/downloadMinecraftLanguage.ts",
"npm:types": "tsc",
"npm:package": "ts-node scripts/generateNPMPackage.ts",
"npm:clean": "del-cli npm/types",
"npm:copy": "ncp README.md npm/README.md && ncp LICENSE npm/LICENSE",
"npm": "npm run npm:clean && npm run npm:types && npm run npm:package && npm run npm:copy",
"publish": "npm run npm && cd npm && npm publish",
"build": "vite build",
"copyIcons": "ncp icons public/icons && ncp vscode-material-icon-theme/icons public/icons/material"
},
"targets": {
"main": false
},
"engines": {
"browsers": "Chrome 69"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neko-craft/NekoMaid.git"
},
"keywords": [
"minecraft",
"server",
"manager"
],
"author": "Shirasawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/neko-craft/NekoMaid/issues"
},
"homepage": "https://github.com/neko-craft/NekoMaid#readme",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@fontsource/roboto-mono": "^4.5.08",
"@loadable/component": "^5.15.2",
"@mui/icons-material": "^5.10.14",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.10.14",
"@mui/styles": "^5.10.14",
"@mui/x-data-grid": "^5.17.12",
"buffer": "^6.0.3",
"codemirror": "^5.65.9",
"dayjs": "^1.11.6",
"echarts": "^5.4.0",
"echarts-for-react": "^3.0.2",
"lodash": "^4.17.21",
"material-ui-cron": "github:ShirasawaSama/material-ui-cron#feat--update-to-mui",
"mdi-material-ui": "^7.6.0",
"nbt-ts": "^1.3.5",
"pretty-bytes": "^6.0.0",
"react": "^18.2.0",
"react-codemirror2": "^7.2.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"skinview3d": "^2.2.1",
"socket.io-client": "^4.5.3",
"valid-filename": "^4.0.0"
},
"devDependencies": {
"@types/loadable__component": "^5.13.4",
"@types/lodash": "^4.14.189",
"@types/react": "^18.0.25",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.9",
"@types/react-router-dom": "^5.3.3",
"@types/request": "^2.48.8",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-react": "^2.2.0",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"less": "^4.1.3",
"minecraft-render": "github:ShirasawaSama/minecraft-render#fix-nodejs-18-build",
"ncp": "^2.0.0",
"nugget": "^2.2.0",
"rollup-plugin-visualizer": "^5.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"yauzl": "^2.10.0"
}
}