-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
35
36
37
38
39
40
{
"name": "react-attention",
"version": "1.0.7",
"description": "Claim attention in React components",
"main": "dist/index.client.js",
"types": "dist/index.client.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json && mv dist/index.js dist/index.client.js && mv dist/index.d.ts dist/index.client.d.ts",
"prepare": "husky install && npm run build",
"lint": "bun run lint:tsc && bun run lint:biome --",
"lint:biome": "biome check --apply .",
"lint:tsc": "tsc --noEmit --pretty",
"format": "biome format --write"
},
"files": ["dist"],
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "biome check --apply"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronin-co/react-attention.git"
},
"keywords": ["tailwindcss", "named", "groups", "nested"],
"author": "leo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronin-co/react-attention/issues"
},
"homepage": "https://github.com/ronin-co/react-attention#readme",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@biomejs/biome": "1.9.1",
"@types/react": "18.3.7",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"typescript": "5.3.3"
}
}