-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
47 lines (47 loc) · 1 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
{
"name": "@ohbug/react",
"version": "2.0.9",
"description": "Ohbug SDK for React",
"license": "Apache-2.0",
"author": "chenyueban <jasonchan0527@gmail.com>",
"homepage": "https://github.com/ohbug-org/ohbug",
"bugs": {
"url": "https://github.com/ohbug-org/ohbug/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ohbug-org/ohbug"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"peerDependencies": {
"react": "^16.8.6"
},
"dependencies": {
"@ohbug/core": "workspace:*",
"@ohbug/types": "workspace:*"
},
"devDependencies": {
"@ohbug/browser": "workspace:*",
"@types/react": "^18.2.14"
},
"publishConfig": {
"access": "public"
}
}