generated from Namchee/liby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.49 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
{
"name": "@namchee/telepon",
"version": "1.1.1",
"type": "module",
"description": "Sane and easy-to-use Indonesian phone number validator and formatter.",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest",
"build": "tsup index.ts --dts --format esm,cjs --minify",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Namchee/telepon.git"
},
"bugs": {
"url": "https://github.com/Namchee/telepon/issues"
},
"homepage": "https://github.com/Namchee/telepon#readme",
"keywords": [
"phone-number",
"validator",
"formatter",
"typescript"
],
"author": {
"name": "Cristopher Namchee",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@auto-it/conventional-commits": "^11.0.4",
"@auto-it/npm": "^11.0.4",
"@namchee/eslint-config": "^2.0.9",
"@types/node": "^18.7.13",
"auto": "^11.0.4",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=16",
"pnpm": ">=8",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
}
}