-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.25 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.25 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
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
111
112
{
"name": "react-bypass",
"version": "1.1.0",
"description": "Element bypass for React.",
"keywords": [
"react",
"slot",
"bypass",
"ui",
"JSX",
"TSX"
],
"homepage": "https://github.com/rortan134/react-bypass/",
"bugs": {
"url": "https://github.com/rortan134/react-bypass/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rortan134/react-bypass.git"
},
"license": "MIT",
"author": "GSMT <gsmt.dev@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./index.cjs"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist",
"src",
"**/*.js",
"**/*.mjs",
"**/*.cjs",
"**/*.d.ts",
"**/*.d.mts",
"**/*.d.cts",
"**/package.json"
],
"scripts": {
"build": "bunchee",
"clean": "find . -name node_modules -o -name .next -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"dev": "bunchee --watch",
"format": "prettier --cache --write .",
"lint": "eslint ./src",
"prepublishOnly": "pnpm lint && pnpm type-check && pnpm test && pnpm build",
"test": "vitest run",
"test:e2e": "playwright test",
"type-check": "tsc --noEmit",
"watch": "vitest watch"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --quiet --fix --cache"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.3"
},
"devDependencies": {
"@chance/eslint": "^1.1.0",
"@playwright/test": "^1.56.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"bunchee": "^6.6.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-testing-library": "^7.13.1",
"husky": "^9.1.7",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"turbo": "~2.5.8",
"typescript": "5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"packageManager": "pnpm@10.18.2",
"engines": {
"node": ">=18",
"npm": ">=9.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}