-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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
48
49
50
{
"name": "@oraichain/owallet-wallet-standard",
"version": "0.1.1",
"author": "OWallet Team",
"repository": "https://github.com/owallet-io/wallet-standard",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
},
"scripts": {
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
"clean": "shx mkdir -p lib && shx rm -rf lib",
"tsc": "tsc --build --verbose tsconfig.all.json",
"package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
"build": "npm run clean && npm run tsc && npm run package",
"deploy": "yarn publish --access public"
},
"dependencies": {
"@solana/wallet-standard-features": "=1.1.0",
"@solana/web3.js": "=1.58.0",
"@wallet-standard/base": "^1.0.1",
"@wallet-standard/features": "^1.0.3",
"bs58": "^4.0.1"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/node-fetch": "^2.6.2",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"typescript": "=4.9.5"
}
}