-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "@fuel-wallet/sdk",
"description": "Integrate DApps with Fuel Wallet Extension.",
"version": "0.11.0",
"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 --dts",
"ts:check": "tsc --noEmit",
"test": "jest --verbose",
"xstate:typegen": "xstate typegen 'src/**/*.ts?(x)'"
},
"dependencies": {
"@types/chrome": "^0.0.237",
"dexie-observable": "4.0.1-beta.13",
"events": "^3.3.0",
"json-rpc-2.0": "^1.6.0",
"uuid": "^9.0.0",
"xstate": "^4.37.2"
},
"peerDependencies": {
"fuels": ">=0.44.2"
},
"devDependencies": {
"@fuel-wallet/types": "workspace:*",
"@types/uuid": "^9.0.1",
"fuels": "0.44.2",
"jest-webextension-mock": "^3.8.9",
"tsup": "^6.7.0"
}
}