forked from siberiacancode/reactuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.39 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.39 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
{
"name": "useverse",
"type": "module",
"version": "0.3.1",
"description": "Add reactuse hooks to your apps",
"license": "MIT",
"homepage": "https://siberiacancode.github.io/reactuse/",
"repository": {
"type": "git",
"url": "git+https://github.com/siberiacancode/reactuse.git",
"directory": "packages/cli"
},
"keywords": [
"hooks",
"reactuse",
"cli",
"react",
"react hooks",
"react use",
"use",
"hooks"
],
"exports": "./dist/bin.mjs",
"bin": {
"useverse": "dist/bin.mjs"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "pnpm build",
"dev": "tsdown --watch",
"build": "tsdown",
"build:registry": "tsx --tsconfig ./tsconfig.json src/registry/index.ts",
"lint": "eslint . --fix",
"lint-inspector": "npx @eslint/config-inspector@latest",
"format": "prettier --write .",
"type": "tsc --noEmit",
"pretty": "yarn type && yarn lint && yarn format"
},
"dependencies": {
"@antfu/ni": "^28.2.0",
"@siberiacancode/fetches": "^1.14.1",
"chalk": "5.6.2",
"cosmiconfig": "^9.0.0",
"execa": "9.6.1",
"ora": "9.3.0",
"prompts": "^2.4.2",
"tsconfig-paths": "^4.2.0",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.35",
"cross-env": "^10.1.0",
"tsdown": "^0.20.3",
"tsx": "^4.21.0"
}
}