-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.11 KB
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
{
"name": "owebjs",
"version": "1.6.3-dev",
"description": "A flexible and modern web framework built on top of Fastify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./dist/plugins": {
"types": "./dist/plugins/index.d.ts",
"import": "./dist/plugins/index.js",
"default": "./dist/plugins/index.js"
}
},
"scripts": {
"start": "node .",
"build": "tsup",
"dev": "tsup && node test/index.js",
"test": "tsup && vitest run --config test/vitest.config.mts",
"test:watch": "tsup && vitest --config test/vitest.config.mts",
"format": "prettier --write . --ignore-path .gitignore"
},
"homepage": "https://github.com/owebjs/oweb",
"repository": {
"type": "git",
"url": "https://github.com/owebjs/oweb"
},
"keywords": [],
"author": "owebjs",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.28.0",
"@babel/generator": "^7.28.0",
"@babel/parser": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@babel/traverse": "^7.28.0",
"@babel/types": "^7.28.2",
"@fastify/websocket": "11.2.0",
"chalk": "^5.4.1",
"fastify": "5.8.1",
"path-to-regexp": "^8.2.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.52.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@fastify/cors": "11.2.0",
"@fastify/multipart": "9.4.0",
"@swc/core": "^1.3.85",
"@types/chokidar": "^2.1.3",
"@types/node": "^24.1.0",
"@types/ws": "^8.18.1",
"chokidar": "^3.5.3",
"prettier": "^3.0.3",
"tslib": "^2.6.2",
"tsup": "^8.5.0",
"typescript": "^5.2.2",
"vitest": "^3.2.4"
},
"type": "module",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}