-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 KB
/
package.json
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
{
"author": "Zheeeng <[email protected]>",
"private": false,
"scripts": {
"test": "vitest",
"dev": "npm-run-all --parallel dev:*",
"dev:lib": "pnpm --filter react-keyboard-navigator dev",
"dev:example": "pnpm --filter react-keyboard-navigator-example dev",
"build": "pnpm build:lib && pnpm build:example",
"build:lib": "pnpm --filter react-keyboard-navigator build",
"build:example": "pnpm --filter react-keyboard-navigator-example build",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx ."
},
"devDependencies": {
"@mdx-js/react": "^2.3.0",
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.45.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"pnpm": "^8.6.10",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"engines": {
"node": ">=14"
}
}