-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 894 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 894 Bytes
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
{
"name": "my-afnm-mod",
"version": "0.0.1",
"description": "A mod for AFNM",
"author": {
"name": "<your name>"
},
"main": "dist/mod.js",
"scripts": {
"extract-translations": "afnm-extract-translations",
"prebuild": "afnm-extract-translations",
"build": "webpack --mode production",
"postbuild": "node scripts/copy-translations.js && node scripts/zip-dist.js"
},
"devDependencies": {
"afnm-types": "0.6.52",
"file-loader": "^6.2.0",
"prettier": "^3.7.4",
"ts-loader": "^9.5.4",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"zip-a-folder": "^4.0.4"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@reduxjs/toolkit": "^2.11.1",
"react": "^19.2.4"
}
}