-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.07 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@xyo-network/plugins",
"version": "3.2.9",
"description": "Typescript/Javascript Plugins for XYO Platform",
"homepage": "https://xyo.network",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/plugins/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/plugins.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XYO Development Team",
"email": "[email protected]",
"url": "https://xyo.network"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/neutral/index.d.ts",
"default": "./dist/neutral/index.mjs"
},
"./package.json": "./package.json"
},
"module": "dist/neutral/index.mjs",
"types": "dist/neutral/index.d.ts",
"workspaces": [
"packages/**/*"
],
"scripts": {
"build": "xy build && xy statics",
"build-tests": "tsc --noEmit --lib dom,esnext",
"build-typedoc-site": "typedoc",
"compile": "./scripts/clear-scrollback-buffer.sh && yarn xy compile",
"coverage": "yarn vitest --coverage --forceExit",
"deploy": "xy deploy",
"lint-pkg": "npmPkgJsonLint .",
"test": "vitest run"
},
"resolutions": {
"axios": "^1",
"ethers": "^6",
"jsbi": "^3",
"quick-lru": "^5"
},
"dependencies": {
"@xyo-network/payload-plugins": "workspace:^",
"@xyo-network/payloadset-plugins": "workspace:^"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@xylabs/eslint-config-flat": "^4.2.6",
"@xylabs/forget": "^4.5.1",
"@xylabs/platform": "^4.5.1",
"@xylabs/sdk-api-express-ecs": "^2.1.0",
"@xylabs/ts-scripts-yarn3": "^4.2.6",
"@xylabs/tsconfig": "^4.2.6",
"@xylabs/vitest-extended": "^4.5.1",
"@xyo-network/account": "^3.6.11",
"@xyo-network/archivist-memory": "^3.6.11",
"@xyo-network/boundwitness-builder": "^3.6.11",
"@xyo-network/hash": "^3.6.11",
"@xyo-network/manifest": "^3.6.11",
"@xyo-network/manifest-wrapper": "^3.6.11",
"@xyo-network/node-memory": "^3.6.11",
"@xyo-network/payload-builder": "^3.6.11",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"jsbi": "^4.3.0",
"jsdom": "^26.0.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"nodemon": "^3.1.9",
"reflect-metadata": "^0.2.2",
"supertest": "^7.0.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.3.0",
"yarn": "1.22.22"
},
"publishConfig": {
"access": "public"
},
"resolutions_comment": "We set the above resolutions to make sure we pull in the latest versions of these packages even if some sub packages request earlier versions"
}