Files
decky-frontend-lib/package.json

67 lines
1.7 KiB
JSON
Raw Normal View History

2022-04-22 22:31:54 +02:00
{
"name": "decky-frontend-lib",
2022-06-02 17:58:18 +02:00
"version": "0.0.6",
2022-04-22 22:31:54 +02:00
"description": "A library for building decky plugins",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"dev": "tsc -b -w",
2022-05-10 23:38:10 +02:00
"prepack": "npm run build",
2022-06-04 10:19:04 +02:00
"test": "echo 'No tests for now!'",
"postinstall": "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": "Jonas Dellinger <jonas@dellinger.dev>",
"license": "GPL-2.0-or-later",
"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": {
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/cz-commitlint": "^17.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
2022-05-10 23:38:10 +02:00
"@types/jest": "^27.4.1",
2022-04-22 22:31:54 +02:00
"@types/react": "16.14.0",
2022-05-30 21:00:38 +02:00
"@types/react-router": "5.1.18",
"commitizen": "^4.2.4",
"husky": "^8.0.1",
2022-04-22 22:31:54 +02:00
"import-sort-style-module": "^6.0.0",
2022-05-10 23:38:10 +02:00
"jest": "^27.5.1",
2022-04-22 22:31:54 +02:00
"prettier-plugin-import-sort": "^0.0.7",
"semantic-release": "^19.0.2",
2022-04-22 22:31:54 +02:00
"shx": "^0.3.4",
2022-05-10 23:38:10 +02:00
"ts-jest": "^27.1.4",
2022-04-22 22:31:54 +02:00
"typescript": "^4.6.3"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}