-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "@libsdomau/valisk",
"version": "1.0.6",
"license": "MIT License",
"description": "Mascaras UNCONTROLLED, CONTROLLED e integração com REACT-HOOK-FORMS",
"main": "./dist/lib.umd.js",
"module": "./dist/lib.es.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js"
}
},
"type": "module",
"homepage": "https://github.com/MauMuller/react-valisk#readme",
"files": [
"dist"
],
"keywords": [
"react",
"valisk",
"mask-for-inputs",
"integration-with-react-hook-form",
"uncontrolled-mask",
"controlled-mask",
"react-hook-form-mask"
],
"author": {
"name": "Mauricio Muller dos Santos",
"email": "mauriciomuller2012@gmail.com",
"url": "https://www.instagram.com/mauricio_m_s/"
},
"repository": {
"type": "git",
"url": "https://github.com/MauMuller/valisk"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"updateLinux": "bash ./scripts/updatePackage.sh",
"downgrade": "npm version 0.0.0",
"log": "ts-node-esm ./scripts/generateLog.ts",
"release": "ts-node-esm ./scripts/generateRelease.ts",
"update": "ts-node-esm ./scripts/generateRelease.ts && git add ./.github/templates/RELEASE.md && git commit -m 'release' && ts-node-esm ./scripts/updatePackage.ts",
"commit": "ts-node-esm ./scripts/generateLog.ts && git add CHANGELOG.md && gitmoji -c"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"gitmoji-cli": "^7.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.2"
}
}