-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "@opendevtools/clearingnummer",
"version": "1.4.1",
"author": "Rickard Natt och Dag <rickard@nattochdag.dev> (https://willcodefor.beer)",
"repository": {
"type": "git",
"url": "https://github.com/opendevtools/clearingnummer.git"
},
"main": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"bun-types": "1.1.24",
"rimraf": "6.0.1",
"typescript": "5.5.4"
},
"bugs": {
"url": "https://github.com/opendevtools/clearingnummer/issues"
},
"description": "Clearing numbers for Swedish banks",
"files": [
"dist"
],
"homepage": "https://github.com/opendevtools/clearingnummer#readme",
"keywords": [
"Clearing",
"Number",
"Swedish",
"Banks",
"Bank",
"Clearingnummer",
"Svensk bank"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"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"
},
"types": "./dist/lib/index.d.ts"
}