-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.75 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
{
"name": "@zl-asica/react",
"version": "0.3.10",
"description": "A library of reusable React hooks, components, and utilities built by ZL Asica.",
"keywords": [
"react",
"hooks",
"library",
"utilities",
"reusable",
"zl-asica",
"zla",
"ZL Asica"
],
"author": {
"name": "ZL Asica",
"email": "[email protected]",
"url": "https://github.com/ZL-Asica/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZL-Asica/react.git"
},
"bugs": "https://github.com/ZL-Asica/react/issues",
"homepage": "https://react.zla.app",
"funding": "https://github.com/sponsors/ZL-Asica",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"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 src/**/*",
"lint:fix": "eslint src/**/* --fix",
"format": "prettier --write .",
"docs": "typedoc && 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"
},
"license": "MIT",
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@vitest/coverage-v8": "2.1.6",
"@vitest/ui": "^2.1.6",
"@zl-asica/prettier-config": "^1.0.9",
"esbuild-plugin-preserve-directives": "^0.0.11",
"eslint": "^9.16.0",
"eslint-config-zl-asica": "1.0.19",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typedoc": "^0.27.2",
"typedoc-plugin-markdown": "^4.3.0",
"typescript": "^5.7.2",
"vitepress": "^1.5.0",
"vitepress-sidebar": "^1.29.0",
"vitest": "^2.1.6"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{js,mjs,json,css,md}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}