-
-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "@reactuses/reactuses-monorepo",
"type": "module",
"packageManager": "pnpm@10.15.0",
"license": "Unlicense",
"homepage": "https://www.reactuse.com/",
"repository": {
"type": "git",
"url": "https://github.com/childrentime/reactuse"
},
"bugs": {
"url": "https://github.com/childrentime/reactuse/issues"
},
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm --filter @reactuses/core run typecheck",
"test": "pnpm --filter @reactuses/core run test",
"docs:dev": "pnpm --filter website-astro run dev",
"build": "pnpm --filter @reactuses/core run build",
"core:dev": "pnpm --filter core run dev"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@ririd/eslint-config": "1.3.3",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.19.117",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"consola": "^2.15.3",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"esno": "^4.8.0",
"fast-glob": "^3.3.3",
"fs-extra": "^10.1.0",
"lodash-es": "^4.17.21",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"@babel/*",
"typescript",
"@types/react"
]
}
}
}