Skip to content

Commit

Permalink
feat: stuff that dosent work
Browse files Browse the repository at this point in the history
  • Loading branch information
Sv443 committed Oct 30, 2024
1 parent 11dc3c7 commit 9d218c3
Show file tree
Hide file tree
Showing 5 changed files with 505 additions and 12 deletions.
30 changes: 23 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@
"version": "0.1.0",
"description": "Generates a Factorio text plate blueprint for the given text. Requires the text plates mod.",
"homepage": "https://github.com/Sv443/FactorioTextPlateGen",
"main": "src/index.ts",
"main": "dist/src/index.js",
"scripts": {
"start": "tsx src/index.ts",
"dev": "nodemon -I --exec tsx src/index.ts",
"start": "tsx .",
"dev": "nodemon -I --exec pnpm start",
"test": "tsx test.ts",
"build": "tsc && nexe --build -i dist/src/index.js -o dist/factoriotextplategen"
"build-rollup": "tsc --noEmit && rollup -c",
"pre-build": "tsc",
"build": "pnpm run pre-build && pnpm run build-win && pnpm run build-linux && pnpm run build-mac",
"build-win": "nexe --target windows-x64-14.15.3 -i index.js -o dist/factoriotextplategen",
"build-linux": "nexe --target linux-x64-14.15.3 -i index.js -o dist/factoriotextplategen",
"build-mac": "tsc && nexe --target macos-x64-14.15.3 -i index.js -o dist/factoriotextplategen"
},
"author": {
"name": "Sv443",
Expand All @@ -22,14 +27,25 @@
"tsx": "^4.19.2"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.8.4",
"@types/prompts": "^2.4.9",
"nexe": "4.0.0-rc.6",
"nodemon": "^3.1.7"
"nodemon": "^3.1.7",
"pnpm": "^9.12.3",
"rollup": "^4.18.0",
"typescript": "^5.6.3"
},
"nodemonConfig": {
"ignore": ["dist/*"],
"watch": ["src"],
"ignore": [
"dist/*"
],
"watch": [
"src"
],
"ext": "ts,json,js"
}
}
Loading

0 comments on commit 9d218c3

Please sign in to comment.