-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 884 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 884 Bytes
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
{
"name": "@gabber/client-react",
"version": "0.1.0-alpha21",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\""
},
"dependencies": {
"@gabber/client": "0.1.0-alpha19",
"eslint-config-react-app": "^7.0.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/react": "^18.0.0 || ^19.0.0",
"@types/react-dom": "^18.0.0 || ^19.0.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5"
},
"publishConfig": {
"access": "public"
}
}