-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "aetherial",
"version": "1.2.9",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"author": "Pyxel <pyxeldev@icloud.com>",
"contributors": [
"Pyxel <pyxeldev@icloud.com>"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"pretest": "yarn build",
"test": "jest",
"prepublishOnly": "yarn build",
"testLocal": "cd test && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PyxelCodes/Aetherial.git"
},
"bugs": {
"url": "https://github.com/PyxelCodes/Aetherial/issues"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@swc/core": "^1.6.6",
"@types/eslint__js": "^8.42.3",
"@types/fastify-cors": "^2.1.0",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.9",
"@types/ws": "^8.5.12",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^9.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.2",
"typescript-eslint": "^8.7.0"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/express": "^3.0.0",
"axios": "^1.7.7",
"buffer-image-size": "^0.6.4",
"colors": "^1.4.0",
"fastify": "4.28.1",
"fastify-raw-body": "4.3.0",
"signale": "^1.4.0",
"tweetnacl": "^1.0.3",
"ws": "^8.18.0"
},
"packageManager": "yarn@4.5.0"
}