-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.95 KB
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
{
"name": "@erag/phone-number-vue",
"version": "1.0.2",
"description": "Minimal Vue composable for country-aware phone input, masking, calling codes, and validation.",
"homepage": "https://github.com/eramitgupta/phone-number-vue#readme",
"repository": {
"type": "git",
"url": "https://github.com/eramitgupta/phone-number-vue.git"
},
"bugs": {
"url": "https://github.com/eramitgupta/phone-number-vue/issues"
},
"keywords": [
"phone",
"phone-number",
"phone-input",
"dial-code",
"country-code",
"calling-code",
"phone-mask",
"phone-validation",
"mobile-number",
"headless",
"composable",
"metadata",
"vue"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"scripts": {
"build": "vite build && tsc -p tsconfig.json --emitDeclarationOnly",
"eslint": "ESLINT_USE_FLAT_CONFIG=false eslint --resolve-plugins-relative-to . \"src/**/*.{ts,tsx}\"",
"lint": "prettier --write \"src/**/*.{ts,tsx,js,json,md}\"",
"lint:check": "prettier --check \"src/**/*.{ts,tsx,js,json,md}\"",
"release": "release-it",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"prettier": "^3.7.4",
"release-it": "^20.0.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^8.0.0"
},
"release-it": {
"git": {
"requireCleanWorkingDir": true
},
"github": {
"release": true,
"host": "github.com",
"repo": "eramitgupta/phone-number-vue"
}
}
}