-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.56 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.56 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
73
74
75
76
77
78
79
{
"name": "qwe-js",
"version": "1.0.0-alpha.4.1",
"description": "High-performance, zero-dependency TypeScript backend framework built on uWebSockets.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"qwe": "dist/cli/index.js"
},
"preferGlobal": true,
"scripts": {
"build": "npm run build:clean && npm run build:optimize && npm run build:cli",
"build:clean": "rimraf dist",
"build:optimize": "tsc -p tsconfig.build.json && npm run build:minify",
"build:minify": "node scripts/minify-build.js",
"build:cli": "tsc -p tsconfig.cli.json && npm run minify:cli",
"build:dev": "tsc && npm run build:cli",
"build:analyze": "npm run build && node scripts/analyze-bundle.js",
"minify:cli": "node scripts/minify-cli.js",
"dev": "tsx watch examples/basic/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run build",
"example": "cd examples/basic && npm run dev",
"docs:dev": "npx http-server docs -p 8080 -o",
"docs:build": "echo 'Documentation is already built in docs/ directory'",
"docs:serve": "npx http-server docs -p 8080",
"docs:validate": "npx html-validate docs/index.html",
"postinstall": "echo '\n🎉 Qwe Framework installed!\n\nCLI Commands:\n qwe init - Initialize new project\n qwe generate module <name> - Generate module\n\nGlobal install: npm install -g qwe-js@alpha\nFor help: qwe --help\n'"
},
"keywords": [
"typescript",
"backend",
"framework",
"uwebsockets",
"high-performance",
"zero-dependency",
"express-alternative"
],
"author": "Deni Setiya",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.34.0",
"jest": "^30.0.5",
"@types/jest": "^30.0.0",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"terser": "^5.43.1",
"rimraf": "^6.0.1",
"gzip-size": "^7.0.0",
"brotli-size": "^4.0.0"
},
"dependencies": {
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.52.0"
},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/denisetiya/qwe.git"
},
"bugs": {
"url": "https://github.com/denisetiya/qwe/issues"
},
"homepage": "https://github.com/denisetiya/qwe#readme"
}