-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.24 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@xylabs/meta-server",
"version": "4.1.5",
"description": "Meta Server - adjusts meta data on index.html for served static site",
"keywords": [
"xylabs",
"nodejs",
"static",
"utility",
"typescript",
"react"
],
"homepage": "https://xylabs.com",
"bugs": {
"url": "https://github.com/xylabs/sdk-meta-server-nodejs/issues",
"email": "support@xyo.network"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xylabs/sdk-meta-server-nodejs.git"
},
"license": "LGPL-3.0-or-later",
"author": {
"name": "XY Labs Development Team",
"email": "support@xylabs.com",
"url": "https://xylabs.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"node": {
"import": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.mjs"
}
}
},
"./package.json": "./package.json"
},
"module": "dist/node/index.mjs",
"types": "dist/node/index.d.ts",
"bin": {
"docker-build": "dist/node/bin/docker-build.mjs",
"generate-dotenv": "dist/node/bin/generate-dotenv.mjs",
"start-meta": "dist/node/bin/start-meta.mjs"
},
"scripts": {
"coverage": "yarn jest --coverage",
"start": "nodemon",
"start-esm": "node ./dist/node/bin/start-meta.mjs",
"test": "vitest run"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@xylabs/assert": "^4.0.9",
"@xylabs/delay": "^4.0.9",
"@xylabs/exists": "^4.0.9",
"@xylabs/forget": "^4.0.9",
"@xylabs/logger": "^4.0.9",
"@xylabs/promise": "^4.0.9",
"@xylabs/sdk-api-express-ecs": "^2.0.4",
"@xylabs/sdk-meta": "^4.0.9",
"@xyo-network/axios": "^2.91.3",
"async-mutex": "^0.5.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"he": "^1.2.0",
"http-status-codes": "^2.3.0",
"lru-cache": "^11.0.0",
"mime": "^4.0.4",
"minimatch": "^10.0.1",
"puppeteer": "^23.2.0",
"serve-static": "^1.15.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@types/express": "^4.17.21",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.12",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "^22.5.0",
"@types/serve-static": "^1.15.7",
"@types/supertest": "^6.0.2",
"@xylabs/eslint-config": "^3.15.16",
"@xylabs/eslint-config-flat": "^4.0.7",
"@xylabs/eslint-config-react": "^3.15.16",
"@xylabs/jest-helpers": "^4.0.9",
"@xylabs/ts-scripts-yarn3": "^4.0.7",
"@xylabs/tsconfig": "^4.0.7",
"@xylabs/tsconfig-dom": "^4.0.7",
"@xylabs/tsconfig-dom-jest": "^4.0.7",
"@xylabs/tsconfig-jest": "^4.0.7",
"axios": "^1.7.5",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"jest-extended": "^4.0.2",
"jest-image-snapshot": "^6.4.0",
"jest-serializer-html": "^7.1.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"peerDependencies": {
"axios": "^1"
},
"packageManager": "yarn@4.4.1",
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.5.1",
"yarn": "4.4.0"
},
"publishConfig": {
"access": "public"
},
"docs": "dist/docs.json"
}