-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@harnessio/oats-cli",
"version": "2.3.1",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/harness/oats.git",
"directory": "packages/cli"
},
"bin": {
"oats": "./bin/oats.mjs"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --outDir dist && cp -R src/templates dist/",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"lint": "eslint '{src,test}/**/*.{mts,ts}'",
"fmtc": "prettier --check '{src,test}/**/*.{mts,ts}'",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"typescript": "^4.0.0"
},
"dependencies": {
"chalk": "^5.2.0",
"change-case": "^4.1.2",
"esbuild": "^0.16.10",
"js-yaml": "^4.1.0",
"liquidjs": "^10.3.3",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.0",
"openapi-types": "^12.1.0",
"ora": "^6.1.2",
"prettier": "^2.2.1",
"swagger2openapi": "^7.0.5",
"yargs": "^17.6.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/prettier": "^2.7.1",
"@types/yargs": "^17.0.17",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}