-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "@pagopa/interop-outbound-models",
"version": "1.0.9",
"description": "PagoPA Interoperability outbound models",
"main": "dist",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"test": "vitest run",
"lint": "eslint . --ext .ts,.tsx",
"lint:autofix": "eslint . --ext .ts,.tsx --fix",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"build": "tsc",
"check": "tsc --project tsconfig.check.json",
"generate-protobuf": "mkdirp ./src/gen && npx protoc --ts_opt=eslint_disable --ts_out ./src/gen --proto_path ./proto ./proto/**/**/*.proto && tsc-esm-fix --src='src/gen/' --ext='.js'"
},
"keywords": [],
"author": "",
"repository": {
"url": "https://github.com/pagopa/interop-outbound-models"
},
"license": "Apache-2.0",
"dependencies": {
"ts-pattern": "5.2.0",
"zod": "3.23.8",
"@protobuf-ts/runtime": "2.9.4"
},
"devDependencies": {
"eslint": "8.57.0",
"mkdirp": "3.0.1",
"prettier": "2.8.8",
"tsc-esm-fix": "2.20.27",
"typescript": "5.4.5",
"@types/node": "20.14.6",
"@protobuf-ts/protoc": "2.9.4",
"@protobuf-ts/plugin": "2.9.4",
"@tsconfig/node-lts": "20.1.3",
"@pagopa/eslint-config": "3.0.0",
"vitest": "^2.0.4"
},
"config": {
"protocVersion": "26.1"
},
"packageManager": "[email protected]"
}