This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.51 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@kazi-faas/cli",
"version": "0.0.0-development",
"license": "MIT",
"bin": {
"kazi": "dist/cli.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "npm run build && dist/cli.js",
"pretest": "npm run build",
"test": "xo && ava",
"semantic-release": "npm run build && semantic-release"
},
"files": [
"dist"
],
"dependencies": {
"@kubernetes/client-node": "^0.16.3",
"degit": "^2.8.4",
"got": "^11.8.3",
"ink": "^3.2.0",
"ink-table": "^3.0.0",
"ink-task-list": "^1.1.0",
"meow": "^9.0.0",
"pkg-install": "^1.0.0",
"react": "^17.0.2"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"source/": "dist/"
}
}
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@sindresorhus/tsconfig": "^2.0.0",
"@types/degit": "^2.8.3",
"@types/react": "^17.0.37",
"ava": "^3.15.0",
"chalk": "^4.1.2",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"ink-testing-library": "^2.1.0",
"semantic-release": "^19.0.2",
"typescript": "^4.5.2",
"xo": "^0.39.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kazi-faas/kazi.git"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "dev",
"prerelease": true
},
"next"
]
},
"publishConfig": {
"access": "public"
}
}