-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "@lynx-js/react-use",
"description": "A React-style hooks library designed specifically for ReactLynx",
"version": "0.2.0",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/lynx-community/reactlynx-use.git"
},
"license": "Apache-2.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"docs:dev": "rspress dev",
"docs:build": "rspress build",
"docs:deploy": "RSPRESS_DEPLOY=1 rspress build",
"docs:preview": "rspress preview",
"format": "biome format --write",
"test": "vitest",
"release": "pnpm run build && pnpm changeset publish",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"pnpm biome check"
]
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@changesets/cli": "^2.29.7",
"@lynx-js/react": "^0.114.4",
"@lynx-js/types": "3.4.11",
"@microsoft/api-extractor": "^7.54.0",
"@rslib/core": "^0.13.3",
"@rstest/core": "^0.4.1",
"@types/node": "^22.10.1",
"@types/react": "^18.3.26",
"dprint": "^0.50.2",
"husky": "^9.1.7",
"jsdom": "24.1.0",
"lint-staged": "^16.2.7",
"rsbuild-plugin-publint": "0.3.3",
"@rspress/core": "^2.0.0",
"@rspress/plugin-llms": "^2.0.0",
"rspress-plugin-gh-pages": "^0.3.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"immer": "10.1.1",
"nanoid": "^5.1.6",
"react-use": "^17.6.0"
},
"peerDependencies": {
"@lynx-js/react": ">=0.105.1"
},
"packageManager": "pnpm@10.17.0+sha512.fce8a3dd29a4ed2ec566fb53efbb04d8c44a0f05bc6f24a73046910fb9c3ce7afa35a0980500668fa3573345bd644644fa98338fa168235c80f4aa17aa17fbef"
}