-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.59 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.59 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@nexgenstudiodev/fastkit",
"type": "commonjs",
"version": "1.0.0",
"description": "A modular, class-based toolkit for fast API development with TypeScript and Express.",
"main": "dist/FastKit.js",
"types": "dist/FastKit.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build",
"rebuild:pnpm": "pnpm run clean && pnpm run build",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start:dev": "ts-node-dev --respawn --transpile-only src/FastKit.ts",
"format": "prettier --write 'src/**/*.{ts,tsx,js,json,md}'",
"prepublishOnly": "npm run format && npm run lint && npm run build",
"publish:npm": "npm publish --access public",
"publish:pnpm": "pnpm publish --access public --no-git-checks",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"test": "jest"
},
"keywords": [
"api",
"typescript",
"auth",
"utils",
"class-based",
"modular",
"toolkit",
"headless",
"nodejs"
],
"author": "Abhishek Kumar <abhishek.nexgen.dev@gmail.com>",
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/NexGenStudioDev/FastKit"
},
"bugs": {
"url": "https://github.com/NexGenStudioDev/FastKit/issues"
},
"homepage": "https://github.com/NexGenStudioDev/FastKit#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.12.1",
"devDependencies": {
"@babel/core": "^7.27.7",
"@babel/preset-env": "^7.27.2",
"@eslint/js": "^9.29.0",
"@jest/globals": "^30.0.3",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"babel-jest": "^30.0.2",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"i": "^0.3.7",
"jest": "^30.0.3",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"dependencies": {
"@types/dotenv": "^8.2.3",
"dotenv": "^16.6.0",
"express": "^5.1.0",
"zod": "^3.25.67"
}
}