-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@arcana/scw",
"version": "0.0.45",
"description": "Arcana Gasless",
"main": "dist/standalone.mjs",
"type": "module",
"module": "dist/index.js",
"jsdelivr": "dist/standalone.mjs",
"unpkg": "dist/standalone.mjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/standalone.mjs",
"import": "./dist/index.js"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"clean": "run-p clean:dist clean:types",
"clean:dist": "rimraf dist/",
"clean:types": "rimraf types/",
"build": "run-s clean build:sdk ",
"build:sdk": "run-p build:esm build:cjs build:ts",
"build:esm": "rollup --config rollup.es.config.js",
"build:cjs": "rollup --config rollup.cjs.config.js",
"build:ts": "tsc --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"htmldocs": "typedoc --options typedochtml.json",
"prepublish": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"node-stdlib-browser": "^1.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^2.75.7",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"ts-loader": "^9.4.3",
"typedoc": "^0.26.3",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-markdown": "^4.2.3",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-material-theme": "^1.1.0",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@biconomy/account": "^4.5.3",
"axios": "^1.4.0",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"os-browserify": "^0.3.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0"
},
"peerDependencies": {
"viem": "^2"
}
}