-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.17 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
{
"name": "@purecore-br/4pi",
"version": "0.1.4",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Suissa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/suissa/purecore-apify"
},
"bin": {
"4pi": "dist/cli.js"
},
"keywords": [
"api",
"purecore",
"modern-node",
"performance",
"workers"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "bun run src/index.ts",
"start": "node dist/index.js",
"create:crud": "node dist/cli.js create crud",
"example:ddd": "bun run examples/run-ddd-generator.ts",
"example:ddd:test": "bun run examples/test-ddd-generator.ts",
"generate:schemas": "tsx generate-zod-schemas.ts",
"demo:schemas": "tsx examples/zod-schema-generation.ts",
"demo:fastify": "tsx examples/fastify-integration.ts",
"dev:fastify": "tsx examples/advanced-fastify-decorators.ts",
"dev:aon": "tsx examples/aon-example.ts",
"demo:aon": "tsx examples/aon-example.ts",
"demo:aon-simple": "node examples/simple-aon-demo.cjs",
"demo:crystalbox": "tsx examples/crystalbox-example.ts",
"benchmark": "node dist/benchmark.api.js",
"test": "tsx --test test/*.test.ts",
"test:bun": "bun test test/*.test.ts",
"test:native": "tsx --test test/native-multipart.test.ts",
"test:performance": "tsx --test test/performance.test.ts",
"monitor": "node --inspect dist/index.js"
},
"workspaces": [
"src/packages/*",
"frontend"
],
"devDependencies": {
"@types/bun": "^1.3.12",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.7.2"
},
"dependencies": {
"@purecore-br/jwt": "^0.1.0",
"@purecore-br/p3g": "^0.2.1",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"i18next": "^23.10.1",
"lucide-react": "^0.562.0",
"react-router-dom": "^7.11.0",
"tailwind-merge": "^3.4.0",
"undici-types": "^7.16.0",
"zod": "^3.23.8"
}
}