-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 1.05 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.0",
"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 src scripts --ext ts,tsx --report-unused-disable-directives --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 lint-ci && bun prettier-ci && bun run build && cd playground && tsc && bun lint-ci && cd ../dist && bun publint"
},
"prettier": {
"trailingComma": "all"
},
"peerDependencies": {
"react": ">=16",
"vite": "^4 || ^5"
},
"devDependencies": {
"@arnaud-barre/eslint-config": "^3.1.5",
"@arnaud-barre/tnode": "^0.19.2",
"@types/node": "^18.18.9",
"eslint": "^8.54.0",
"prettier": "3.0.3",
"publint": "^0.2.5",
"typescript": "~5.2.2",
"vite": "^5.0.0"
}
}