-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "decky-romm-sync",
"version": "0.29.0",
"description": "Decky Loader plugin to sync your RomM library to Steam as non-steam shortcuts",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:dev": "rollup -c rollup.dev.config.js",
"size": "size-limit",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"packageManager": "pnpm@10.29.3",
"license": "GPL-3.0",
"dependencies": {
"@decky/api": "^1.1.3",
"tslib": "^2.7.0"
},
"devDependencies": {
"@decky/rollup": "^1.0.2",
"@decky/ui": "^4.11.6",
"@eslint/js": "^9.39.4",
"@rollup/rollup-linux-x64-musl": "^4.62.2",
"@size-limit/file": "^12.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.17",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"happy-dom": "^20.10.6",
"markdownlint-cli2": "^0.23.0",
"prettier": "^3.9.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"rollup": "^4.62.2",
"size-limit": "^12.1.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
},
"overrides": {
"js-yaml@>=4.0.0 <4.2.0": "4.3.0",
"markdown-it@>=14.0.0 <14.2.0": "14.3.0"
}
}
}