-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "@pax2pay/model-banking",
"version": "0.1.617",
"description": "Library containing data model types and functions for the Pax2Pay Banking API.",
"author": "Pax2Pay Ltd",
"license": "MIT",
"repository": "https://github.com/pax2pay/model-banking",
"bugs": {
"url": "https://github.com/pax2pay/model-banking/issues"
},
"homepage": "https://pax2pay.com",
"private": false,
"type": "module",
"module": "./dist/mjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"scripts": {
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"build": "rimraf dist/* && tsc -p tsconfig.mjs.json && tsc -p tsconfig.cjs.json",
"test": "vitest --run",
"coverage": "vitest --coverage",
"prepare": "npm run build",
"clean": "rimraf dist node_modules coverage"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260405.1",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"@vitest/coverage-v8": "4.1.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "3.8.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "4.1.3"
},
"dependencies": {
"authly": "^3.1.2",
"cloudly-http": "^0.1.7",
"cloudly-storage": "^0.10.16",
"cryptly": "^4.0.6",
"gracely": "^2.0.13",
"isly": "0.1.20",
"isoly": "3.0.6",
"selectively": "^2.0.15",
"slackly": "0.0.6",
"typedly": "0.0.27",
"zod": "4.1.13"
}
}