-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.2 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
{
"name": "microfields",
"version": "1.0.0",
"description": "",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "tsx watch ./src/index.ts",
"build": "tsc-watch -b ./tsconfig.cjs.json ./tsconfig.esm.json",
"start": "tsx ./src",
"test": "tsx watch ./src/__tests__/"
},
"keywords": [],
"author": "",
"type": "module",
"license": "ISC",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./package.json": "./package.json",
"./generated": {
"default": "./generated/index.js",
"import": "./generated/index.js",
"types": "./generated/index.d.ts"
}
},
"devDependencies": {
"@prisma/client": "^5.3.1",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@swc/core": "^1.3.89",
"@types/amqplib": "^0.10.2",
"@types/brotli": "^1.3.2",
"@types/bunyan": "^1.8.9",
"@types/cli-color": "^2.0.3",
"@types/fs-extra": "^11.0.2",
"@types/get-installed-path": "^4.0.1",
"@types/node": "^20.7.0",
"rollup": "^3.29.3",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-swc3": "^0.10.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@mrleebo/prisma-ast": "^0.7.0",
"@msgpack/msgpack": "3.0.0-beta2",
"amqplib": "^0.10.3",
"brotli": "^1.3.3",
"bunyan": "^1.8.15",
"bunyan-rotating-file-stream": "^2.0.5",
"cli-color": "^2.0.3",
"fastify": "^4.23.2",
"fastify-raw-body": "^4.2.2",
"fastify-type-provider-zod": "^1.1.9",
"fs": "0.0.1-security",
"fs-extra": "^11.1.1",
"get-installed-path": "^4.0.8",
"ioredis": "^5.3.2",
"path": "^0.12.7",
"prisma": "^5.3.1",
"reflect-metadata": "^0.1.13",
"terminal-link": "^3.0.0",
"ts-morph": "^20.0.0",
"zod": "^3.22.2"
},
"files": [
"dist/**/*",
"generated/**/*"
]
}