-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "@solflare-wallet/metamask-sdk",
"version": "1.0.3",
"description": "",
"repository": "https://github.com/solflare-wallet/solflare-metamask-sdk",
"author": "Solflare Developers <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/solflare-wallet/solflare-metamask-sdk#readme",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"scripts": {
"start:esm": "tsc --watch",
"start:cjs": "tsc --project tsconfig.cjs.json --watch",
"start": "npm-run-all -p start:esm start:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"deploy": "npm run build && npm publish --access public",
"deploy:next": "npm run build && npm publish --access public --tag next"
},
"files": [
"src/",
"lib/"
],
"dependencies": {
"@solana/wallet-standard-features": "^1.1.0",
"@wallet-standard/base": "^1.0.1",
"bs58": "^5.0.0",
"eventemitter3": "^5.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@solana/web3.js": "*"
}
}