-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 KB
/
package.json
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
{
"name": "drizzle-dbml-generator",
"version": "0.10.0",
"description": "Convert your Drizzle ORM schema into DBML markup",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npx tsup src/index.ts --format cjs,esm --dts",
"fmt": "npx prettier --write .",
"lint": "npx eslint . && npx tsc --noEmit",
"test:all": "npx vitest run --dir src/__tests__",
"test:pg": "npx vitest run --dir src/__tests__/pg",
"test:mysql": "npx vitest run --dir src/__tests__/mysql",
"test:sqlite": "npx vitest run --dir src/__tests__/sqlite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/L-Mario564/drizzle-dbml-generator.git"
},
"keywords": [
"drizzle-orm",
"dbml",
"typescript"
],
"author": "Mario564",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"drizzle-orm": "^0.38.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
},
"peerDependencies": {
"drizzle-orm": ">=0.36.0"
}
}