-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
84 lines (84 loc) · 2.23 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
{
"name": "@upjs/facile-validator",
"version": "1.12.3",
"description": "Easy HTML form validator written in TypeScript with tree-shaking",
"repository": {
"type": "git",
"url": "git+https://github.com/upjs/facile-validator.git"
},
"homepage": "https://github.com/upjs/facile-validator",
"license": "MIT",
"scripts": {
"dev": "vite --config ./playground/vite.config.ts",
"deploy": "vite --config ./playground/vite.config.ts build",
"build": "tsc && unbuild",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"release": "yarn test && npx standard-version && git push --follow-tags && npm publish --access public"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*": "prettier -w -u"
},
"keywords": [
"javascript",
"typescript",
"html",
"validation",
"validator",
"form",
"form-validation"
],
"author": "Ali Nazari <[email protected]>",
"contributors": [
"Mohammad Saleh Fadaei <[email protected]> (https://twitter.com/ms_fadaei)"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/types": "7.23.4",
"@types/node": "20.10.0",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"@unocss/preset-wind": "0.57.7",
"@unocss/reset": "0.57.7",
"c8": "8.0.1",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "13.0.3",
"path": "0.12.7",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"typescript": "5.3.2",
"unbuild": "1.2.1",
"unocss": "0.57.7",
"vite": "5.0.2",
"vitest": "0.34.6"
},
"bugs": {
"url": "https://github.com/upjs/facile-validator/issues"
},
"directories": {
"test": "tests"
}
}