-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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": "@platformic/argocd-client",
"version": "0.0.5",
"description": "Awesome typesafe ArgoCD client",
"author": {
"email": "[email protected]",
"name": "Petr Václavek"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/platformic/argocd-client.git"
},
"keywords": [
"typescript",
"argocd",
"client",
"orval"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/*",
"README.md",
"LICENCE"
],
"scripts": {
"build": "tsc",
"test": "tsx --env-file=.env.test --test --experimental-test-coverage ./src/**/*",
"lint": "eslint . --fix",
"fix-esm-imports": "./scripts/fix-imports.mjs",
"generate": "orval --config ./orval.config.ts"
},
"dependencies": {
"@t3-oss/env-core": "^0.10.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.11",
"eslint": "^9.2.0",
"orval": "^6.28.2",
"tsc-alias": "^1.8.9",
"tsx": "^4.9.5",
"typescript": "^5.4.5",
"zx": "^8.0.2"
}
}