-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.04 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.04 KB
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
103
104
105
106
107
108
109
{
"name": "@xyo-network/plugins-mono-repo",
"version": "5.3.1",
"private": true,
"description": "Typescript/Javascript Plugins for XYO Platform",
"homepage": "https://xyo.network",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/plugins/issues",
"email": "support@xyo.network"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/plugins.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XYO Development Team",
"email": "support@xyo.network",
"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",
"files": [
"dist",
"src",
"!**/*.bench.*",
"!**/*.spec.*",
"!**/*.test.*"
],
"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"
},
"devDependencies": {
"@ethersproject/address": "~5.8.0",
"@ethersproject/bignumber": "~5.8.0",
"@stylistic/eslint-plugin": "~5.8.0",
"@types/node": "^25.2.3",
"@types/supertest": "~6.0.3",
"@typescript-eslint/eslint-plugin": "~8.55.0",
"@typescript-eslint/parser": "~8.55.0",
"@typescript-eslint/types": "~8.55.0",
"@vitest/coverage-v8": "~4.0.18",
"@xylabs/eslint-config-flat": "~7.3.2",
"@xylabs/sdk-js": "^5.0.79",
"@xylabs/ts-scripts-yarn3": "~7.3.2",
"@xylabs/tsconfig": "~7.3.2",
"@xylabs/tsconfig-dom": "~7.3.2",
"@xylabs/vitest-extended": "~5.0.79",
"@xyo-network/archivist-memory": "^5.3.5",
"@xyo-network/boundwitness-builder": "^5.3.5",
"@xyo-network/hash": "^5.3.5",
"@xyo-network/module-factory-locator": "^5.3.5",
"@xyo-network/node-memory": "^5.3.5",
"@xyo-network/payload-builder": "^5.3.5",
"@xyo-network/sdk-js": "^5.3.5",
"@xyo-network/wallet": "^5.3.5",
"chalk": "~5.6.2",
"dotenv": "~17.3.1",
"eslint": "~9.39.2",
"eslint-import-resolver-typescript": "~4.4.4",
"eslint-plugin-import": "~2.32.0",
"eslint-plugin-sonarjs": "~3.0.7",
"ethers": "^6.16.0",
"glob": "~13.0.3",
"jsbi": "~4.3.2",
"jsdom": "~28.0.0",
"knip": "~5.83.1",
"nodemon": "~3.1.11",
"reflect-metadata": "~0.2.2",
"rimraf": "~6.1.2",
"supertest": "~7.2.2",
"tslib": "~2.8.1",
"typedoc": "~0.28.17",
"typescript": "~5.9.3",
"vitest": "~4.0.18",
"zod": "^4.3.6"
},
"peerDependencies": {
"@xylabs/sdk-js": "^5",
"zod": "^4"
},
"packageManager": "yarn@4.9.2",
"volta": {
"node": "22.14.0",
"yarn": "1.22.22"
},
"publishConfig": {
"access": "restricted"
}
}