-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 3.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@finitoapp/eet-client",
"version": "0.3.0",
"description": "Low-level TypeScript SDK for EET (Elektronická evidence tržeb) 2.0.",
"keywords": [
"eet",
"elektronicka-evidence-trzeb",
"czech",
"fiscalization",
"tax",
"receipts",
"xmldsig",
"ws-security",
"soap",
"typescript"
],
"homepage": "https://github.com/finitoapp/eet-client#readme",
"bugs": {
"url": "https://github.com/finitoapp/eet-client/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finitoapp/eet-client.git"
},
"license": "MIT",
"author": "Josef Kříž <pepakriz@gmail.com>",
"type": "module",
"sideEffects": false,
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=22.18.0"
},
"workspaces": [
"eet-tester"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./zod": {
"import": {
"types": "./dist/zod.d.mts",
"default": "./dist/zod.mjs"
},
"require": {
"types": "./dist/zod.d.cts",
"default": "./dist/zod.cjs"
}
},
"./builtin": {
"import": {
"types": "./dist/builtin.d.mts",
"default": "./dist/builtin.mjs"
},
"require": {
"types": "./dist/builtin.d.cts",
"default": "./dist/builtin.cjs"
}
},
"./caeet-renewal": {
"import": {
"types": "./dist/caeet-renewal.d.mts",
"default": "./dist/caeet-renewal.mjs"
},
"require": {
"types": "./dist/caeet-renewal.d.cts",
"default": "./dist/caeet-renewal.cjs"
}
},
"./pkcs12": {
"import": {
"types": "./dist/pkcs12.d.mts",
"default": "./dist/pkcs12.mjs"
},
"require": {
"types": "./dist/pkcs12.d.cts",
"default": "./dist/pkcs12.cjs"
}
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit && bun run typecheck:browser-test",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck:browser-test": "tsc --noEmit -p test/integration/tsconfig.browser.json",
"test": "bun test --pass-with-no-tests",
"test:coverage": "bun test --pass-with-no-tests --coverage",
"test:node": "node --test \"src/**/*.test.ts\" \"test/**/*.test.ts\"",
"test:deno": "deno test --no-check -A \"src/**/*.test.ts\" \"test/**/*.test.ts\"",
"test:integration:p12": "EET_TEST_P12=1 bun test test/integration",
"test:integration:cors": "EET_TEST_CORS=1 bun test test/integration",
"test:integration:live": "EET_TEST_LIVE_PLAYGROUND=1 bun test test/integration",
"test:integration:live-browser": "EET_TEST_LIVE_PLAYGROUND_BROWSER=1 bun test test/integration",
"check": "bun run lint && bun run typecheck && bun run test",
"check:tester": "cd eet-tester && bun run build",
"precheck:package": "bun run build",
"check:package": "publint"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@types/bun": "^1.3.14",
"@types/node": "^22.18.0",
"playwright": "^1.61.1",
"publint": "^0.3.22",
"tsdown": "^0.22.13",
"typescript": "^7.0.2",
"zod": "^4.4.3"
}
}