-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.77 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
{
"name": "@xylabs/sdk-js",
"version": "4.4.10",
"description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
"keywords": [
"xylabs",
"utility",
"typescript",
"esm"
],
"homepage": "https://xylabs.com",
"bugs": {
"url": "git+https://github.com/xylabs/sdk-js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xylabs/sdk-js.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XY Labs Development Team",
"email": "[email protected]",
"url": "https://xylabs.com"
},
"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-typedoc-site": "xy gen-docs @xylabs/sdk-js"
},
"resolutions": {
"eslint": "9.14.0"
},
"dependencies": {
"@xylabs/api": "workspace:^",
"@xylabs/array": "workspace:^",
"@xylabs/assert": "workspace:^",
"@xylabs/axios": "workspace:^",
"@xylabs/crypto": "workspace:^",
"@xylabs/decimal-precision": "workspace:^",
"@xylabs/delay": "workspace:^",
"@xylabs/error": "workspace:^",
"@xylabs/eth-address": "workspace:^",
"@xylabs/exists": "workspace:^",
"@xylabs/forget": "workspace:^",
"@xylabs/function-name": "workspace:^",
"@xylabs/hex": "workspace:^",
"@xylabs/log": "workspace:^",
"@xylabs/logger": "workspace:^",
"@xylabs/object": "workspace:^",
"@xylabs/platform": "workspace:^",
"@xylabs/profile": "workspace:^",
"@xylabs/promise": "workspace:^",
"@xylabs/retry": "workspace:^",
"@xylabs/set": "workspace:^",
"@xylabs/static-implements": "workspace:^",
"@xylabs/timer": "workspace:^",
"@xylabs/url": "workspace:^"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@xylabs/config": "^4.2.4",
"@xylabs/eslint-config-flat": "^4.2.4",
"@xylabs/ts-scripts-yarn3": "^4.2.4",
"@xylabs/tsconfig": "^4.2.4",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.3",
"knip": "^5.38.1",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typescript": "^5.7.2",
"vite": "^6.0.0",
"vitest": "^2.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.1"
},
"engineStrict": true,
"volta": {
"node": "22.3.0",
"yarn": "1.22.19"
},
"publishConfig": {
"access": "public"
}
}