-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "@fuel-wallet/connections",
"private": true,
"description": "Fuel Wallet Connections for CRX.",
"version": "0.50.2",
"license": "Apache-2.0",
"main": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"files": ["dist"],
"scripts": {
"build": "pnpm ts:check && tsup",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@types/chrome": "^0.0.246",
"events": "^3.3.0",
"json-rpc-2.0": "1.7.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"fuels": "pr-3735"
},
"devDependencies": {
"@fuel-wallet/types": "workspace:*",
"@types/uuid": "^9.0.5",
"blob-polyfill": "^7.0.20220408",
"fuels": "pr-3735",
"jest-environment-jsdom": "29.6.2",
"tsup": "^7.2.0",
"undici": "^6.4.0",
"web-streams-polyfill": "^3.3.2",
"whatwg-fetch": "^3.6.20"
}
}