-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
106 lines (106 loc) · 3.23 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
103
104
105
106
{
"name": "@xyo-network/sdk-js",
"version": "3.6.9",
"description": "Primary SDK for using XYO Protocol 2.0",
"homepage": "https://xyo.network",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues",
"email": "support@xyo.network"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XYO Development Team",
"email": "support@xyo.network",
"url": "https://xyo.network"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"browser": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.mjs"
},
"node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
},
"types": "./dist/neutral/index.d.ts",
"default": "./dist/neutral/index.mjs"
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"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": "vitest --coverage --watch false",
"deploy": "xy deploy",
"free-3033": "kill -9 $(lsof -t -i :3033)",
"free-8080": "kill -9 $(lsof -t -i :8080)",
"free-mongo": "kill -9 $(lsof -t -i :55391) && kill -9 $(lsof -t -i :55393)",
"lint-pkg": "npmPkgJsonLint .",
"test": "vitest --watch false"
},
"resolutions": {
"axios": "^1",
"ethers": "^6",
"fake-indexeddb": "^4",
"quick-lru": "^5"
},
"dependencies": {
"@xyo-network/core-payload-plugins": "workspace:^",
"@xyo-network/manifest": "workspace:^",
"@xyo-network/modules": "workspace:^",
"@xyo-network/protocol": "workspace:^",
"@xyo-network/sdk-utils": "workspace:^",
"@xyo-network/shared": "workspace:^"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@firebase/app": "^0.10.17",
"@firebase/app-compat": "^0.2.47",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^2.1.8",
"@xylabs/eslint-config-flat": "^4.2.6",
"@xylabs/forget": "^4.4.34",
"@xylabs/ts-scripts-yarn3": "^4.2.6",
"@xylabs/tsconfig": "^4.2.6",
"@xylabs/vitest-extended": "^4.4.34",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"jsdom": "^25.0.1",
"reflect-metadata": "^0.2.2",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typedoc-material-theme": "^1.2.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"packageManager": "yarn@4.6.0",
"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"
}