-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1021 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1021 Bytes
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
{
"name": "@titou10/v-mask",
"type": "module",
"description": "mask directive for vue.js that exposes the unmasked value",
"version": "1.4.0",
"author": "Denis Forveille <titou10.titou10@gmail.com>",
"license": "MIT",
"keywords": [
"vue",
"directive",
"mask",
"v-mask"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titou10titou10/v-mask.git"
},
"bugs": {
"url": "https://github.com/titou10titou10/v-mask/issues"
},
"homepage": "https://github.com/titou10titou10/v-mask#readme",
"dependencies": {
"lodash": "^4.18.1"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.0",
"typescript": "^6.0.0",
"vue": "^3.5.0"
}
}