-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.28 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
59
60
61
62
63
64
65
66
67
{
"name": "kubernate",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"description": "Generate Kubernetes YAMLs with code instead of templates.",
"homepage": "https://kubernate.dev",
"readme": "README.md",
"files": [
"README.md",
"dist/**.js",
"dist/**.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/laurci/kubernate"
},
"bin": {
"kubernate": "./dist/cli/bin.js"
},
"scripts": {
"schema:generate": "ts-node src/generator/bin.ts",
"schema:clean": "rimraf src/__generated__/**",
"config:generate": "typescript-json-schema ./src/cli/config.ts Config --ignoreErrors --required --excludePrivate -o schemas/config.json && rimraf dist/schemas && cp -r schemas dist/schemas",
"compile": "tsc",
"compile:watch": "tsc -w",
"build": "tsc && ts-node src/scripts/build.ts '0.0.1' && chmod +x ./dist/cli/bin.js",
"build:assets": "rimraf dist/assets && cp -R src/assets dist/assets",
"clean": "rimraf dist",
"clean:incremental": "rimraf dist/tsconfig.tsbuildinfo",
"format": "prettier --write .",
"periodic-release": "ts-node src/generator/periodic-release.ts",
"release": "ts-node src/generator/periodic-release.ts --force"
},
"dependencies": {
"cosmiconfig": "^7.0.1",
"deepmerge": "^4.2.2",
"glob": "^7.1.7",
"handlebars": "^4.7.7",
"minimatch": "^3.0.4",
"semver": "^7.3.5",
"ts-morph": "^11.0.3",
"ts-node": "^10.1.0",
"tslog": "^3.2.1",
"typescript": "^4.3.5",
"typescript-json-schema": "^0.50.1",
"yaml": "^1.10.2",
"yargs": "^17.1.1",
"openapi-typescript": "^4.0.2",
"shelljs": "^0.8.4",
"type-fest": "^1.2.2"
},
"devDependencies": {
"@octokit/rest": "^18.9.1",
"@types/deepmerge": "^2.2.0",
"@types/handlebars": "^4.1.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.4.1",
"@types/package-json": "^5.0.1",
"@types/semver": "^7.3.8",
"@types/shelljs": "^0.8.9",
"@types/yargs": "^17.0.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
}
}