x86-64-wordle/package.json

25 lines
593 B
JSON
Raw Normal View History

2024-09-19 20:50:21 +00:00
{
"name": "x86-wordle",
"version": "1.0.0",
"description": "",
"main": "src/main.jsx",
"scripts": {
"build": "esbuild src/main.jsx --bundle --outfile='html/static/bundle.js' --tree-shaking=true --minify",
"watch": "esbuild src/main.jsx --bundle --outfile='html/static/bundle.js' --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "."
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"esbuild": "^0.24.0"
2024-09-19 20:50:21 +00:00
}
}