-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.95 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.95 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
{
"name": "@dgac/nmb2b-client",
"version": "2.2.6",
"description": "EUROCONTROL Network Manager B2B SOAP client",
"keywords": [
"EUROCONTROL",
"SOAP",
"TypeScript"
],
"author": "Benjamin BERET <benjamin.beret@aviation-civile.gouv.fr>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DGAC/nmb2b-client-js.git"
},
"engines": {
"node": ">=20"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"module-sync": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./security": {
"import": "./dist/security.mjs",
"module-sync": "./dist/security.mjs",
"types": "./dist/security.d.mts"
},
"./config": {
"import": "./dist/config.mjs",
"module-sync": "./dist/config.mjs",
"types": "./dist/config.d.mts"
},
"./types": {
"import": "./dist/types.mjs",
"module-sync": "./dist/types.mjs",
"types": "./dist/types.d.mts"
},
"./utils": {
"import": "./dist/utils/index.mjs",
"module-sync": "./dist/utils/index.mjs",
"types": "./dist/utils/index.d.mts"
},
"./package.json": "./package.json"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepack": "pnpm build",
"downloadWSDL": "tsx ./scripts/downloadWSDL.ts",
"clean": "rimraf dist",
"build": "tsdown",
"release": "pnpm build && changeset publish",
"lint": "eslint --max-warnings=0",
"test": "vitest",
"test:unit": "vitest --project=unit",
"test:e2e": "vitest --project=e2e",
"test:ci": "vitest --watch=false --reporter=default --reporter=junit --outputFile.junit=junit.xml --coverage.enabled --typecheck",
"update-fixtures": "tsx ./scripts/update-fixtures.ts",
"typecheck": "tsc --noEmit"
},
"files": [
"dist"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.3",
"@total-typescript/shoehorn": "^0.1.2",
"@types/debug": "^4.1.12",
"@types/node": "^22.19.15",
"@types/proper-lockfile": "^4.1.4",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^17.3.1",
"eslint": "^9.39.3",
"msw": "^2.12.10",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@date-fns/utc": "^2.1.1",
"axios": "^1.13.6",
"date-fns": "^4.1.0",
"debug": "^4.4.3",
"proper-lockfile": "^4.1.2",
"remeda": "^2.33.6",
"soap": "^1.7.1",
"tar": "^7.5.10",
"type-fest": "^5.4.4"
},
"publishConfig": {
"provenance": true
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
}
}