-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.97 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
{
"name": "4pi",
"version": "0.2.0",
"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": {
"purecore-apify": "dist/cli.js"
},
"keywords": [
"api",
"purecore"
],
"scripts": {
"build": "tsc",
"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"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@purecore/reqify": "latest",
"cookie": "^1.0.2",
"i18next": "^23.7.6",
"jsonwebtoken": "^9.0.2",
"zod": "^3.22.4",
"@babel/runtime": "^7.23.2",
"buffer-equal-constant-time": "^1.0.1",
"safe-buffer": "^5.0.1",
"ecdsa-sig-formatter": "1.0.11",
"jwa": "^2.0.1",
"jws": "^4.0.1",
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isinteger": "^4.0.4",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.once": "^4.0.0",
"ms": "^2.1.1",
"semver": "^7.5.4",
"@types/cookie": "^0.5.1",
"@types/ms": "*",
"undici-types": "~7.16.0",
"@types/node": "^24.10.1",
"@types/jsonwebtoken": "^9.0.2",
"typescript": "^5.9.3"
}
}