-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 770 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
{
"name": "@tadashi/mask",
"version": "4.5.0",
"description": "The simple and tiny script for input mask",
"keywords": [
"mask",
"input",
"tiny"
],
"bug": {
"url": "https://github.com/lagden/mask",
"email": "lagden@gmail.com"
},
"license": "MIT",
"author": {
"name": "Thiago Lagden",
"email": "lagden@gmail.com"
},
"type": "module",
"main": "dist/mask.cjs",
"types": "types/mask.d.ts",
"exports": {
".": {
"types": "./types/mask.d.ts",
"browser": "./src/mask.js",
"import": "./src/mask.js",
"require": "./dist/mask.cjs"
},
"./package.json": "./package.json"
},
"files": [
"src",
"dist",
"types",
"license",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lagden/mask.git"
}
}