-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.64 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
51
{
"name": "@brave/wallet-standard-brave",
"author": "Brave Software <[email protected]>",
"repository": "https://github.com/brave/wallet-standard-brave",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"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"
},
"files": [
"/lib",
"/src"
],
"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; rollup -c"
},
"dependencies": {
"@solana/wallet-standard-features": "^1.0.0",
"@solana/web3.js": "1.91.7",
"@wallet-standard/base": "^1.0.0",
"@wallet-standard/features": "^1.0.0",
"bs58": "^4.0.1"
},
"devDependencies": {
"@babel/preset-typescript": "7.24.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-babel": "5.3.1",
"@types/bs58": "4.0.4",
"@types/node-fetch": "2.6.11",
"rollup": "2.79.2",
"rollup-plugin-terser": "7.0.2",
"prettier": "2.8.8",
"shx": "0.3.4",
"typescript": "4.9.5"
},
"version": "0.0.14"
}