-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "@nanoexpress/ultimate",
"type": "module",
"version": "2.0.1",
"description": "Ultimate solution based on nanoexpress and best-practices",
"main": "cjs/nanoexpress.js",
"module": "esm/nanoexpress.js",
"typings": "typings/nanoexpress.d.ts",
"scripts": {
"lint": "smartlint",
"test": "node --experimental-modules tests/index.js",
"cleanup": "rm -rf cjs/*.js cjs/*.js.map esm/*.js esm/*.js.map typings/",
"build": "npm run cleanup && rollup -c",
"dev": "npm run cleanup && rollup -c -w",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=16.19.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanoexpress/ultimate.git"
},
"keywords": [
"nano",
"node",
"fast",
"uws",
"websocket",
"http",
"c++"
],
"author": "dalisoft",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/nanoexpress/ultimate/issues"
},
"homepage": "https://github.com/nanoexpress/ultimate#readme",
"dependencies": {
"@nanoexpress/route-syntax-parser": "https://github.com/nanoexpress/route-syntax-parser/releases/download/v2.4.4/nanoexpress-route-syntax-parser-2.4.4.tgz",
"@types/debug": "^4.1.12",
"debug": "^4.3.4",
"fast-decode-uri-component": "^1.0.1",
"fast-query-parse": "^2.0.4",
"path-to-regexp": "^6.2.1",
"supports-color": "^9.4.0",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js/archive/v20.24.0.tar.gz"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.19",
"baretest": "^2.x",
"commitlint-config-airlight": "^6.0.0",
"eslint": "^8.56.0",
"eslint-config-airlight-node": "^4.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"lint-staged-config-airlight": "^4.0.2",
"prettier": "^2.8.8",
"prettier-config-airlight": "^2.0.1",
"rollup": "^3.29.4",
"rollup-plugin-typescript2": "^0.36.0",
"smartlint": "^6.0.4",
"typedoc": "^0.25.8",
"typescript": "^5.0.4"
}
}