-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react-polymorphic",
"version": "1.0.3",
"description": "Create polymorphic React 19+ components with strong TypeScript inference.",
"keywords": [
"react",
"typescript",
"polymorphic",
"component-library",
"design-system",
"as-prop",
"headless-ui",
"ui"
],
"author": "Dashice",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Dashice/react-polymorphic.git"
},
"homepage": "https://github.com/Dashice/react-polymorphic#readme",
"bugs": {
"url": "https://github.com/Dashice/react-polymorphic/issues"
},
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "pnpm clean && tsup && tsc -p tsconfig.build.json",
"prepack": "pnpm build",
"format": "biome format . --write",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"check": "biome check . --write",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc -p tsconfig.json",
"lint:staged": "lint-staged",
"changeset": "changeset",
"version:packages": "changeset version",
"release": "changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@changesets/cli": "^2.31.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.0.0",
"@types/react": "^19.2.18",
"happy-dom": "^20.11.1",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"typescript": ">=5.4.0"
}
}