-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.46 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "regle",
"version": "0.5.1",
"private": true,
"description": "Typescript-first model-based form validation library for Vue 3",
"scripts": {
"lint": "eslint packages/**",
"lint:fix": "eslint packages/** --fix",
"typecheck": "pnpm run -r --parallel --filter='@regle/*' typecheck",
"build": "pnpm run -r --filter='@regle/*' build",
"build:sourcemaps": "pnpm run -r --filter='@regle/*' build:sourcemaps",
"dev": "pnpm run -r --parallel --filter='@regle/*' dev",
"test": "pnpm run build && pnpm run typecheck && vitest run && pnpm run ui-tests:run",
"test:coverage": "pnpm run build:sourcemaps && vitest run --coverage",
"test:dev": "vitest",
"release": "pnpm run lint && pnpm run test && pnpm run typecheck && bumpp -r && git push --follow-tags",
"npm:publish": "zx ./scripts/publish.mjs",
"play:vue3": "cd playground/vue3 && pnpm run dev",
"play:nuxt": "cd playground/nuxt && pnpm run dev",
"ui-tests:server": "pnpm run -r --filter='ui-vue3' dev",
"ui-tests:run": "playwright test",
"ui-tests:test": "playwright test --reporter=junit",
"docs:dev": "vitepress dev docs --port 6001",
"docs:build": "pnpm run build && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@pinia/testing": "0.1.7",
"@playwright/test": "1.49.1",
"@regle/core": "workspace:*",
"@regle/rules": "workspace:*",
"@regle/zod": "workspace:*",
"@regle/valibot": "workspace:*",
"@shikijs/vitepress-twoslash": "1.24.4",
"@tailwindcss/forms": "0.5.9",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@vitejs/plugin-vue": "5.2.1",
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/coverage-v8": "2.1.8",
"@vue/reactivity": "catalog:",
"@vue/test-utils": "2.4.6",
"autoprefixer": "10.4.20",
"bumpp": "9.9.2",
"changelogithub": "0.13.11",
"check-password-strength": "2.0.10",
"cross-env": "7.0.3",
"date-fns": "4.1.0",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-vue": "catalog:",
"happy-dom": "15.11.7",
"pinia": "catalog:",
"playwright": "1.49.1",
"playwright-core": "1.49.1",
"postcss": "8.4.49",
"prettier": "catalog:",
"sass": "1.83.0",
"semver": "7.6.3",
"sitemap": "8.0.0",
"tailwindcss": "3.4.17",
"tsup": "catalog:",
"tsx": "4.19.2",
"typescript": "catalog:",
"vitepress": "1.5.0",
"vitepress-plugin-group-icons": "1.3.2",
"vitest": "2.1.8",
"vue": "catalog:",
"vue-eslint-parser": "catalog:",
"vue-tsc": "catalog:",
"zod": "3.24.1",
"valibot": "1.0.0-beta.9",
"zx": "8.2.4"
},
"type": "module",
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Victor Garcia",
"url": "https://github.com/victorgarciaesgi"
},
"homepage": "https://regle.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/victorgarciaesgi/regle.git"
},
"engines": {
"node": ">=18.18.0",
"pnpm": ">=9.1.0"
},
"license": "MIT",
"packageManager": "pnpm@9.7.1+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
}