-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 1 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
34
{
"name": "vite-plugin-react-click-to-component",
"type": "module",
"version": "3.0.1",
"license": "MIT",
"scripts": {
"postinstall": "cd playground && bun i",
"dev": "scripts/bundle.ts --dev",
"build": "scripts/bundle.ts",
"tsc": "tsc",
"lint": "bun lint-ci --fix --cache",
"lint-ci": "eslint --max-warnings 0",
"prettier": "bun prettier-ci --write",
"prettier-ci": "prettier --ignore-path=.gitignore --check '**/*.{ts,tsx,html,css,json,md,yml}'",
"ci": "tsc && bun run build && bun lint-ci && bun prettier-ci && cd playground && tsc && bun lint-ci && cd ../dist && bun publint"
},
"prettier": {
"trailingComma": "all"
},
"peerDependencies": {
"react": "^18.3.1",
"vite": "^4 || ^5 || ^6"
},
"devDependencies": {
"@arnaud-barre/eslint-config": "^5.2.0",
"@arnaud-barre/tnode": "^0.24.0",
"@types/node": "^20.17.8",
"eslint": "^9.15.0",
"prettier": "3.0.3",
"publint": "^0.2.12",
"typescript": "~5.7.2",
"vite": "^6.0.0"
}
}