-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "@opendevtools/telefonnummer",
"version": "2.3.3",
"description": "Phone number formatter for Swedish phone numbers",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"start": "tsc -w",
"lint": "biome check --write lib",
"test": "bun test",
"prebuild:js": "rimraf dist",
"build:js": "bun build lib/index.ts --minify --outdir ./dist",
"postbuild:js": "tsc --emitDeclarationOnly --declaration --outDir ./dist --noEmit false",
"typecheck": "tsc --noEmit",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/opendevtools/telefonnummer.git"
},
"keywords": [
"Phone",
"Number",
"Parser",
"Swedish",
"Telefonnummer",
"Sverige"
],
"author": {
"name": "Rickard Natt och Dag",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/opendevtools/telefonnummer/issues"
},
"homepage": "https://github.com/opendevtools/telefonnummer#readme",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"bun-types": "1.1.24",
"rimraf": "6.0.1",
"typescript": "5.5.4"
},
"type": "module"
}