-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "@barekey/react",
"version": "0.2.10",
"description": "React bindings for Barekey",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test ./spec/index.ts"
},
"peerDependencies": {
"@barekey/sdk": "^0.5.0",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@barekey/sdk": "^0.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-test-renderer": "^19.2.4"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/usebarekey/react.git"
},
"homepage": "https://github.com/usebarekey/react#readme",
"bugs": {
"url": "https://github.com/usebarekey/react/issues"
}
}