-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.88 KB
/
package.json
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@zl-asica/react",
"type": "module",
"version": "0.3.14",
"packageManager": "pnpm@10.4.1",
"description": "A library of reusable React hooks, components, and utilities built by ZL Asica.",
"author": {
"name": "ZL Asica",
"email": "zl@zla.app",
"url": "https://github.com/ZL-Asica/"
},
"license": "MIT",
"funding": "https://github.com/sponsors/ZL-Asica",
"homepage": "https://react.zla.app",
"repository": {
"type": "git",
"url": "git+https://github.com/ZL-Asica/react.git"
},
"bugs": "https://github.com/ZL-Asica/react/issues",
"keywords": [
"react",
"hooks",
"library",
"utilities",
"reusable",
"zl-asica",
"zla",
"ZL Asica"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:watch": "vitest --coverage --watch",
"version:bump": "changeset version",
"release": "changeset version && changeset publish",
"test:fast": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"docs": "typedoc --exclude 'src/__tests__/**/*' && pnpm docs:clean",
"docs:clean": "node fix-markdown.mjs",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --open"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@changesets/cli": "^2.28.1",
"@eslint-react/eslint-plugin": "^1.27.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.5",
"@types/react": "^19.0.10",
"@vitest/coverage-v8": "3.0.7",
"@vitest/ui": "^3.0.7",
"esbuild-plugin-preserve-directives": "^0.0.11",
"eslint": "^9.21.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.4.0",
"typedoc": "^0.27.9",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.7.3",
"vitepress": "^1.6.3",
"vitepress-sidebar": "^1.31.0",
"vitest": "^3.0.7"
},
"lint-staged": {
"**/*.{ts,tsx,mjs,js,json,css,md,yml}": [
"eslint --fix"
],
"**/*.{json,css,md,yml}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
}
}