-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.57 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
84
85
86
87
88
89
90
91
92
{
"name": "react-cascading-input",
"version": "0.1.0",
"description": "A headless React component for cascading tree-style input with canvas connection lines",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "rspress dev",
"docs:dev": "rspress dev",
"docs:build": "rspress build",
"docs:preview": "rspress preview",
"build": "tsc --noEmit && vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit",
"release": "bash scripts/publish.sh",
"prepare": "husky"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^25.9.3",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.5.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^17.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rspress": "^1.47.1",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.1"
},
"keywords": [
"react",
"cascading",
"tree",
"input",
"headless",
"canvas",
"connection-lines"
],
"license": "MIT",
"author": "chenJJ-88",
"homepage": "https://github.com/chenJJ-88/react-cascading-input#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chenJJ-88/react-cascading-input.git"
},
"bugs": {
"url": "https://github.com/chenJJ-88/react-cascading-input/issues"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.9",
"sideEffects": [
"**/*.css"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{json,md,css}": [
"biome format --write --no-errors-on-unmatched"
]
}
}