-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "@solflare-wallet/utl-aggregator",
"version": "0.0.17",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"author": "Solflare Developers <[email protected]>",
"license": "ISC",
"files": [
"lib/"
],
"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"
},
"peerDependencies": {
"@solana/web3.js": "^1.95.0"
},
"dependencies": {
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"axios": "^0.27.2",
"axios-retry": "^3.2.5",
"lodash": "^4.17.21",
"temp-dir": "^2.0.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.182",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=16"
}
}