-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "minecraft-offline-uuid",
"version": "1.0.0",
"description": "A tool to generate Minecraft offline UUIDs",
"author": "Nuckle",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:vite": "vite --port 3000 --host",
"build": "vite build --base=${npm_config_repository:-/} && npm run prettify",
"prettify": "glob-run js-beautify --editorconfig -r 'dist/**/*.html'",
"preview": "vite preview --port 3001 --host"
},
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^20.12.8",
"autoprefixer": "^10.4.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.27",
"postcss-cli": "^10.1.0"
},
"dependencies": {
"crypto-js": "^4.2.0",
"cssnano": "^7.0.1",
"glob-run": "^0.1.7",
"highlight.js": "^11.10.0",
"js-beautify": "^1.15.1",
"p-limit": "^6.1.0",
"sass": "^1.76.0",
"vite": "^5.2.11",
"vite-plugin-handlebars": "^2.0.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-pwa": "^0.20.0",
"vite-svg-sprite-wrapper": "^1.3.2"
}
}