decky-plugin-template/package.json

59 lines
1.6 KiB
JSON
Raw Normal View History

2022-04-23 00:42:11 +02:00
{
"name": "decky-plugin-template",
"version": "0.0.1",
"description": "A template to quickly create decky plugins from scratch, based on TypeScript and webpack",
2024-06-13 18:11:44 -04:00
"type": "module",
2022-04-23 00:42:11 +02:00
"scripts": {
"build": "shx rm -rf dist && rollup -c",
"watch": "rollup -c -w",
2022-04-23 00:42:11 +02:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteamDeckHomebrew/decky-plugin-template.git"
},
"keywords": [
"decky",
"plugin",
"plugin-template",
"steam-deck",
"deck"
],
2024-06-13 18:11:44 -04:00
"author": "You <you@you.tld>",
2022-09-19 14:29:37 -07:00
"license": "BSD-3-Clause",
2022-04-23 00:42:11 +02:00
"bugs": {
"url": "https://github.com/SteamDeckHomebrew/decky-plugin-template/issues"
},
"homepage": "https://github.com/SteamDeckHomebrew/decky-plugin-template#readme",
"devDependencies": {
2024-06-13 18:11:44 -04:00
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/webpack": "^5.28.5",
"rollup": "^4.18.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.10.0",
2022-05-30 22:23:13 +02:00
"rollup-plugin-import-assets": "^1.1.1",
"shx": "^0.3.4",
2024-06-13 18:11:44 -04:00
"tslib": "^2.6.3",
"typescript": "^5.4.5"
2022-04-23 00:42:11 +02:00
},
"dependencies": {
2024-06-13 18:28:56 -04:00
"@decky/api": "^1.0.5",
"@decky/ui": "^4.0.3",
2024-06-13 18:11:44 -04:00
"react-icons": "^5.2.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
2022-09-18 17:21:42 -07:00
}
2022-04-23 00:42:11 +02:00
}