mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-18 17:10:09 +02:00
94 lines
2.3 KiB
JSON
94 lines
2.3 KiB
JSON
{
|
|
"name": "@decky/ui",
|
|
"version": "4.7.3",
|
|
"description": "A library for interacting with the Steam frontend in Decky plugins and elsewhere.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.js",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "shx rm -rf dist && tsc -b",
|
|
"dev": "tsc -b -w",
|
|
"docs": "typedoc --theme wiki-js --tsconfig ./tsconfig.json src/**/*",
|
|
"test": "echo 'No tests for now!'",
|
|
"prepare": "husky install",
|
|
"commit": "git-cz"
|
|
},
|
|
"files": [
|
|
"/lib",
|
|
"/src",
|
|
"/dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/SteamDeckHomebrew/decky-frontend-lib.git"
|
|
},
|
|
"keywords": [
|
|
"decky",
|
|
"steam-deck",
|
|
"steam",
|
|
"components"
|
|
],
|
|
"author": "SteamDeckHomebrew Team",
|
|
"license": "LGPL-2.1",
|
|
"bugs": {
|
|
"url": "https://github.com/SteamDeckHomebrew/decky-frontend-lib/issues"
|
|
},
|
|
"homepage": "https://github.com/SteamDeckHomebrew/decky-frontend-lib#readme",
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "@commitlint/cz-commitlint"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.3.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@commitlint/cz-commitlint": "^19.2.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/react": "18.3.3",
|
|
"@types/react-dom": "18.3.0",
|
|
"@types/react-router": "5.1.20",
|
|
"commitizen": "^4.3.0",
|
|
"husky": "^9.0.11",
|
|
"import-sort-style-module": "^6.0.0",
|
|
"jest": "^29.7.0",
|
|
"minimist": "^1.2.8",
|
|
"prettier": "^3.3.2",
|
|
"prettier-plugin-import-sort": "^0.0.7",
|
|
"semantic-release": "^24.0.0",
|
|
"shx": "^0.3.4",
|
|
"ts-jest": "^29.1.4",
|
|
"typedoc": "^0.25.13",
|
|
"typedoc-plugin-mdn-links": "^3.1.29",
|
|
"typedoc-plugin-missing-exports": "^2.3.0",
|
|
"typedoc-wikijs-theme": "^1.0.5",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"pnpm": {
|
|
"peerDependencyRules": {
|
|
"ignoreMissing": [
|
|
"react",
|
|
"react-dom"
|
|
]
|
|
},
|
|
"updateConfig": {
|
|
"ignoreDependencies": [
|
|
"react",
|
|
"react-dom"
|
|
]
|
|
}
|
|
},
|
|
"importSort": {
|
|
".js, .jsx, .ts, .tsx": {
|
|
"style": "module",
|
|
"parser": "typescript"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"tag": "latest"
|
|
}
|
|
}
|