-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.93 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
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
{
"name": "zurreal",
"version": "0.1.0",
"type": "module",
"license": "LGPL-3.0-or-later",
"description": "Define your Surrealdb schema using your zod types.",
"homepage": "https://lravaglia.github.io/zurreal",
"keywords": [
"zod",
"surrealdb"
],
"author": {
"name": "Lorenzo Ravaglia",
"email": "lorenzo.ravaglia@hope.edu",
"url": "https://lorenzo.ravaglia.xyz"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/lravaglia/zurreal.git"
},
"bugs": {
"url": "https://github.com/lravaglia/zurreal/issues"
},
"module": "./dist/zurreal.js",
"main": "./dist/zurreal.umd.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/zurreal.js",
"require": "./dist/zurreal.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"scripts": {
"test": "vitest",
"dev": "vite dev",
"prebuild": "vitest --run",
"build": "vite build",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@commitlint/cz-commitlint": "^17.6.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitest/coverage-v8": "^0.34.1",
"commitizen": "^4.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"husky": "^8.0.3",
"inquirer": "8",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"surrealdb.js": "^0.8.3",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-plugin-dts": "^3.4.0",
"vitest": "^0.34.1",
"zod": "^3.21.4"
},
"peerDependencies": {
"surrealdb.js": "^0.8.3",
"zod": "^3.21.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}