Files
decky-frontend-lib/package.json

90 lines
2.2 KiB
JSON
Raw Normal View History

2022-04-22 22:31:54 +02:00
{
"name": "@decky/ui",
2024-06-13 18:23:06 -04:00
"version": "4.0.3",
2024-05-12 12:43:26 -04:00
"description": "A library for interacting with the Steam frontend in Decky plugins and elsewhere.",
2022-04-22 22:31:54 +02:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
2022-06-29 11:50:20 -04:00
"sideEffects": false,
2022-04-22 22:31:54 +02:00
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"dev": "tsc -b -w",
"docs": "typedoc --theme wiki-js --tsconfig ./tsconfig.json src/**/*",
2022-06-04 10:19:04 +02:00
"test": "echo 'No tests for now!'",
"prepare": "husky install",
"commit": "git-cz"
2022-04-22 22:31:54 +02:00
},
"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",
2022-09-30 21:48:33 -07:00
"license": "LGPL-2.1",
2022-04-22 22:31:54 +02:00
"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"
}
},
2022-04-22 22:31:54 +02:00
"devDependencies": {
2024-06-13 18:22:18 -04:00
"@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",
2024-06-13 18:22:18 -04:00
"@types/jest": "^29.5.12",
2024-06-13 18:26:38 -04:00
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
2024-06-13 18:22:18 -04:00
"@types/react-router": "5.1.20",
"commitizen": "^4.3.0",
"husky": "^9.0.11",
2022-04-22 22:31:54 +02:00
"import-sort-style-module": "^6.0.0",
2024-06-13 18:22:18 -04:00
"jest": "^29.7.0",
"minimist": "^1.2.8",
"prettier": "^3.3.2",
2022-04-22 22:31:54 +02:00
"prettier-plugin-import-sort": "^0.0.7",
2024-06-13 18:22:18 -04:00
"semantic-release": "^24.0.0",
2022-04-22 22:31:54 +02:00
"shx": "^0.3.4",
2024-06-13 18:22:18 -04:00
"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",
2024-06-13 18:22:18 -04:00
"typescript": "^5.4.5"
2022-04-22 22:31:54 +02:00
},
"pnpm": {
2022-06-08 22:30:10 +00:00
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
2024-06-13 18:22:18 -04:00
},
"updateConfig": {
"ignoreDependencies": [
"react",
"react-dom"
]
2022-06-08 22:30:10 +00:00
}
},
2022-04-22 22:31:54 +02:00
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}