-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathpackage.json
36 lines (36 loc) · 1006 Bytes
/
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
{
"name": "@ai16z/plugin-flow",
"version": "0.1.6",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@ai16z/eliza": "workspace:*",
"@onflow/config": "1.5.1",
"@onflow/fcl": "1.13.1",
"@onflow/typedefs": "1.4.0",
"bignumber.js": "9.1.2",
"bs58": "6.0.0",
"elliptic": "6.6.1",
"node-cache": "5.1.2",
"sha3": "2.1.4",
"uuid": "11.0.3",
"zod": "3.23.8"
},
"devDependencies": {
"@types/elliptic": "6.4.18",
"@types/uuid": "10.0.0",
"tsup": "8.3.5",
"vitest": "2.1.4"
},
"scripts": {
"lines": "find . \\( -name '*.cdc' -o -name '*.ts' \\) -not -path '*/node_modules/*' -not -path '*/tests/*' -not -path '*/deps/*' -not -path '*/dist/*' -not -path '*/imports*' | xargs wc -l",
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"lint": "eslint --fix --cache .",
"test": "vitest run"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
}
}