-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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": "knead",
"version": "0.3.5",
"description": "Playsound generator for Minecraft",
"main": "dist/main.js",
"scripts": {
"dev": "rimraf dist && run-p dev:webpack dev:electron",
"dev:webpack": "cross-env NODE_ENV=\"development\" webpack --progress",
"dev:electron": "wait-on ./dist/index.html ./dist/main.js && electronmon .",
"build": "cross-env NODE_ENV=\"production\" webpack --progress",
"tcm": "tcm src",
"lint": "eslint src/** --no-error-on-unmatched-pattern --fix"
},
"keywords": [],
"author": "NeAc",
"electronmon": {
"patterns": [
"dist/**/*",
"!userData/**"
]
},
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@reduxjs/toolkit": "^2.5.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@stylistic/eslint-plugin-js": "^2.12.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/webaudioapi": "^0.0.27",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electronmon": "^2.0.3",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all": "^4.1.5",
"react-icons": "^5.4.0",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"wait-on": "^8.0.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@yamada-ui/lucide": "^1.10.1",
"@yamada-ui/react": "^1.7.2",
"i18next": "^24.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.0"
}
}