-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "@streamdal/prisma-extension-streamdal",
"version": "0.0.11",
"author": "Jacob Heric",
"description": "Streamdal code native data pipelines for Prisma",
"keywords": [
"prisma",
"@prisma/client",
"extension",
"streamdal",
"code native data pipelines"
],
"license": "Apache",
"main": "index.js",
"scripts": {
"build": "npm run clean && tsc && cp package.json ./build/package.json && cp README.md ./build/README.md && cp -R assets ./build/assets",
"clean": "rimraf build",
"lint": "eslint src --ext .ts --fix"
},
"peerDependencies": {
"@prisma/client": "^5.11.0",
"@streamdal/node-sdk": "0.2.27"
},
"devDependencies": {
"@prisma/extension-accelerate": "^0.6.2",
"@prisma/client": "^5.7.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prisma": "^5.7.0",
"rimraf": "^5.0.5",
"typescript": "5.3.3"
}
}