-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1015 Bytes
/
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
{
"name": "vahv",
"version": "0.5.0",
"author": "Emmanuelle Fernandes",
"description": "Composable form validation library for TypeScript",
"license": "MIT",
"repository": "github:unleashy/vahv",
"homepage": "https://github.com/unleashy/vahv",
"type": "module",
"exports": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . && prettier -c src",
"lint:fix": "eslint . && prettier -w src",
"build": "pnpm run lint && tsc && unbuild",
"test": "vitest --typecheck",
"prepack": "pnpm run build"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/node": "^20",
"eslint": "^8",
"eslint-config-prettier": "^9",
"eslint-plugin-n": "^17",
"eslint-plugin-unicorn": "^52",
"globals": "^15.1.0",
"prettier": "^3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"unbuild": "^2",
"vitest": "^1"
},
"engines": {
"node": ">=20"
},
"sideEffects": false
}