opengoal-launcher/package.json

33 lines
933 B
JSON
Raw Normal View History

2022-02-07 14:55:19 -05:00
{
2022-03-31 11:24:22 -04:00
"name": "opengoal-launcher",
2022-04-08 18:37:16 -04:00
"private": true,
"version": "0.0.0",
2022-04-14 00:26:38 -04:00
"type": "module",
2022-04-06 22:27:03 -04:00
"scripts": {
2022-04-08 18:37:16 -04:00
"dev": "vite",
2022-04-06 22:27:03 -04:00
"build": "vite build",
"preview": "vite preview",
2022-04-11 23:32:00 -04:00
"tauri": "tauri",
"tauricon": "tauricon",
"package": "node ./scripts/rename-binaries.js",
2022-04-15 21:46:48 -04:00
"update-bin": "node ./scripts/update-binaries.js && npm run package",
"lint": "npx prettier --check .",
2022-04-16 01:08:46 -04:00
"format": "npx prettier --write .",
"mock-bin": "node ./scripts/dummy-binaries.js"
2022-02-07 14:55:19 -05:00
},
"devDependencies": {
2022-04-14 00:26:38 -04:00
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.30",
2022-04-06 22:27:03 -04:00
"@tauri-apps/cli": "^1.0.0-rc.8",
2022-04-11 23:32:00 -04:00
"@tauri-apps/tauricon": "github:tauri-apps/tauricon",
2022-04-14 00:26:38 -04:00
"execa": "^6.1.0",
2022-04-15 21:46:48 -04:00
"prettier": "2.6.2",
2022-04-14 00:26:38 -04:00
"svelte": "^3.44.0",
"vite": "^2.9.2"
2022-04-06 22:27:03 -04:00
},
"dependencies": {
2022-04-08 18:37:16 -04:00
"@tauri-apps/api": "^1.0.0-rc.3",
2022-04-14 00:26:38 -04:00
"svelte-routing": "^1.6.0",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store"
2022-02-07 14:55:19 -05:00
}
}