-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "@bitte-ai/react",
"version": "0.6.6-popup-wallet.1",
"description": "React app tools for Bitte Wallet",
"scripts": {
"watch": "tsc && tsc --watch & jest --watch --coverage",
"lint": "eslint . --fix --ext ts --ext tsx",
"build": "tsup --config tsup.config.ts --external fsevents",
"prepare": "pnpm run build"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "Bitte Team",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"rxjs": "^7.8.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"browser": {
"fsevents": false
},
"dependencies": {
"@mintbase-js/data": "^0.6.6",
"@mintbase-js/sdk": "^0.6.6",
"@near-wallet-selector/core": "^9.0.2",
"@near-wallet-selector/meteor-wallet": "^9.0.2",
"@near-wallet-selector/modal-ui": "^9.0.2",
"@near-wallet-selector/intear-wallet": "^9.0.2",
"buffer": "^6.0.3",
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}