|
1 | 1 | { |
2 | 2 | "name": "@nexgenstudiodev/fastkit", |
3 | | - |
4 | 3 | "type": "commonjs", |
5 | 4 | "version": "1.2.0", |
6 | 5 | "description": "A modular, class-based toolkit for fast API development with TypeScript and Express.", |
|
9 | 8 | "files": [ |
10 | 9 | "dist" |
11 | 10 | ], |
12 | | - |
13 | 11 | "scripts": { |
14 | | - "format": "prettier --write 'src/**/*.{ts,tsx,js,json,md}'", |
15 | | - "lint": "eslint src/**/*.{ts,tsx}", |
16 | | - "lint:fix": "eslint src/**/*.{ts,tsx} --fix", |
17 | | - "link": "npm link @nexgenstudiodev/fastkit", |
18 | | - "build": "tsc && pnpm exec tsc-alias", |
19 | | - "link:manage": "ts-node src/script/manage-link.ts", |
20 | | - "manage": "ts-node src/script/index.ts" |
| 12 | + "clean": "rimraf dist", |
| 13 | + "build": "pnpm -r run build && tsc && tsc-alias", |
| 14 | + "dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --ignore-watch dist src/FastKit.ts", |
| 15 | + "build:main": "tsc && tsc-alias", |
| 16 | + "rebuild": "pnpm -r run clean && pnpm -r run build", |
| 17 | + "lint": "pnpm -r run lint", |
| 18 | + "lint:fix": "pnpm -r run lint:fix", |
| 19 | + "format": "pnpm -r run format", |
| 20 | + "test": "pnpm -r run test", |
| 21 | + "test:watch": "pnpm -r run test:watch", |
| 22 | + "test:coverage": "pnpm -r run test:coverage", |
| 23 | + "sync:versions": "npx npm-check-updates --workspace --dep=prod --upgrade --filter /@nexgenstudiodev/*/", |
| 24 | + "sync:dev-versions": "npx npm-check-updates --workspace --dep=dev --upgrade --filter /@nexgenstudiodev/*/", |
| 25 | + "sync:all-versions": "pnpm run sync:versions && pnpm run sync:dev-versions", |
| 26 | + "publish:all": "pnpm -r publish --access public --no-git-checks", |
| 27 | + "postinstall": "pnpm -r run build" |
21 | 28 | }, |
22 | | - |
23 | 29 | "keywords": [ |
24 | 30 | "fastkit", |
25 | 31 | "auth", |
|
38 | 44 | "workspaces": [ |
39 | 45 | "packages/*" |
40 | 46 | ], |
41 | | - "scripts": { |
42 | | - "clean": "rimraf dist", |
43 | | - "build": "pnpm -r run build && tsc && tsc-alias", |
44 | | - "build:main": "tsc && tsc-alias", |
45 | | - "rebuild": "pnpm -r run clean && pnpm -r run build", |
46 | | - "lint": "pnpm -r run lint", |
47 | | - "lint:fix": "pnpm -r run lint:fix", |
48 | | - "format": "pnpm -r run format", |
49 | | - "test": "pnpm -r run test", |
50 | | - "test:watch": "pnpm -r run test:watch", |
51 | | - "test:coverage": "pnpm -r run test:coverage", |
52 | | - "sync:versions": "npx npm-check-updates --workspace --dep=prod --upgrade --filter /@nexgenstudiodev/*/", |
53 | | - "sync:dev-versions": "npx npm-check-updates --workspace --dep=dev --upgrade --filter /@nexgenstudiodev/*/", |
54 | | - "sync:all-versions": "pnpm run sync:versions && pnpm run sync:dev-versions", |
55 | | - "publish:all": "pnpm -r publish --access public --no-git-checks", |
56 | | - "postinstall": "pnpm -r run build" |
57 | | - }, |
58 | | - "exports": { |
59 | | - ".": { |
60 | | - "import": "./dist/FastKit.js", |
61 | | - "require": "./dist/FastKit.js", |
62 | | - "types": "./dist/FastKit.d.ts" |
63 | | - }, |
64 | | - "./auth": { |
65 | | - "import": "./dist/packages/fastkit-auth/src/index.js", |
66 | | - "require": "./dist/packages/fastkit-auth/src/index.js", |
67 | | - "types": "./dist/packages/fastkit-auth/src/index.d.ts" |
68 | | - }, |
69 | | - "./config": { |
70 | | - "import": "./dist/packages/fastkit-config/src/index.js", |
71 | | - "require": "./dist/packages/fastkit-config/src/index.js", |
72 | | - "types": "./dist/packages/fastkit-config/src/index.d.ts" |
73 | | - }, |
74 | | - "./db": { |
75 | | - "import": "./dist/packages/fastkit-db-config/src/v1/index.js", |
76 | | - "require": "./dist/packages/fastkit-db-config/src/v1/index.js", |
77 | | - "types": "./dist/packages/fastkit-db-config/src/v1/index.d.ts" |
78 | | - } |
79 | | - }, |
80 | 47 | "dependencies": { |
| 48 | + "@types/figlet": "^1.7.0", |
| 49 | + "boxen": "^8.0.1", |
| 50 | + "chalk": "^5.4.1", |
81 | 51 | "dotenv": "^16.4.5", |
| 52 | + "enquirer": "^2.4.1", |
82 | 53 | "express": "^5.1.0", |
| 54 | + "figlet": "^1.8.2", |
| 55 | + "fs": "0.0.1-security", |
| 56 | + "listr2": "^9.0.1", |
| 57 | + "mongoose": "^8.16.3", |
83 | 58 | "ts-node": "^10.9.2", |
84 | 59 | "zod": "^3.23.8" |
85 | 60 | }, |
|
0 commit comments