-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
97 lines (97 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
{
"name": "@xyo-network/sdk-js",
"version": "3.14.16",
"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": "[email protected]"
},
"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": "[email protected]",
"url": "https://xyo.network"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/neutral/index.mjs"
},
"./package.json": "./package.json",
"./README.md": "./README.md"
},
"module": "./dist/neutral/index.mjs",
"types": "./dist/types/index.d.ts",
"workspaces": [
"packages/**/*"
],
"scripts": {
"bench": "vitest bench",
"build": "xy build -j 8 && xy statics",
"build-typedoc-site": "typedoc",
"compile": "./scripts/clear-scrollback-buffer.sh && yarn xy compile",
"coverage": "vitest --coverage --watch false",
"cycle": "node ./scripts/run-cycle.mjs",
"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)",
"package-build": "yarn package-clean && rimraf docs && yarn package-build-only && typedoc && xy statics",
"package-clean": "rimraf dist",
"test": "vitest --watch false"
},
"dependencies": {
"@xyo-network/manifest": "workspace:^",
"@xyo-network/modules": "workspace:^",
"@xyo-network/protocol": "workspace:^"
},
"devDependencies": {
"@firebase/app": "^0.11.5",
"@firebase/app-compat": "^0.2.54",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitest/coverage-v8": "^3.1.2",
"@xylabs/eslint-config-flat": "^6.4.6",
"@xylabs/forget": "^4.8.9",
"@xylabs/ts-scripts-yarn3": "^6.4.6",
"@xylabs/tsconfig": "^6.4.6",
"@xylabs/tsconfig-dom": "^6.4.6",
"@xylabs/vitest-extended": "^4.8.9",
"@xyo-network/sdk-utils": "workspace:^",
"chalk": "^5.4.1",
"dependency-cruiser": "^16.10.1",
"dotenv": "^16.5.0",
"eslint": "^9.25.1",
"eslint-import-resolver-typescript": "^4.3.4",
"glob": "^11.0.2",
"jsdom": "^26.1.0",
"knip": "^5.50.5",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"supertest": "^7.1.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.3",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.3.0",
"yarn": "1.22.22"
},
"publishConfig": {
"access": "public"
},
"readme": "README.md",
"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"
}