-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 968 Bytes
/
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
{
"name": "@bitte-ai/wallet",
"version": "0.6.6-beta-prerelease.5",
"description": "Bitte Wallet",
"keywords": [
"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": "npm 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"
},
"author": "Bitte Team",
"license": "MIT",
"dependencies": {
"@near-wallet-selector/core": "8.9.12",
"@near-wallet-selector/wallet-utils": "^8.9.12",
"near-api-js": "^4.0.3"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.7.3"
}
}