forked from leon-ai/leon-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.02 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@leon-ai/cli",
"version": "0.0.0-development",
"description": "The companion for your Leon journey.",
"public": true,
"type": "module",
"author": {
"name": "Louis Grenard",
"email": "[email protected]",
"url": "https://twitter.com/grenlouis"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leon-ai/leon-cli.git"
},
"bugs": {
"url": "https://github.com/leon-ai/leon-cli/issues"
},
"homepage": "https://getleon.ai",
"keywords": [
"automation",
"voice-assistant",
"artificial-intelligence",
"leon",
"cli",
"assistant",
"personnal-assistant"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"scripts"
],
"main": "build/index.js",
"bin": {
"leon": "build/index.js"
},
"scripts": {
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
"build:dev": "swc ./src --out-dir ./build --watch",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"test:unit": "tap --test-env=NODE_ENV=test",
"test:e2e-docker": "tap \"./build/e2e/docker.test.e2e.js\" --test-env=NODE_ENV=test",
"test:e2e-classic": "tap \"./build/e2e/classic.test.e2e.js\" --test-env=NODE_ENV=test",
"release": "semantic-release"
},
"dependencies": {
"@sinclair/typebox": "0.24.21",
"axios": "0.27.2",
"chalk": "5.0.1",
"clipanion": "3.1.0",
"conf": "10.1.2",
"date-and-time": "2.4.1",
"execa": "6.1.0",
"extract-zip": "2.0.1",
"ora": "6.1.2",
"read-pkg": "7.1.0",
"semver": "7.3.7",
"simple-git": "3.10.0",
"sudo-prompt": "9.2.1",
"table": "6.8.0",
"typanion": "3.9.0",
"update-notifier": "6.0.2"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.220",
"@types/mock-fs": "4.13.1",
"@types/node": "18.6.2",
"@types/semver": "7.3.10",
"@types/sinon": "10.0.13",
"@types/tap": "15.0.7",
"@types/update-notifier": "6.0.1",
"@types/wait-on": "5.3.1",
"@typescript-eslint/eslint-plugin": "5.31.0",
"editorconfig-checker": "4.0.2",
"eslint": "8.20.0",
"eslint-config-conventions": "3.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "43.0.2",
"markdownlint-cli": "0.32.1",
"mock-fs": "5.1.2",
"mocked-env": "1.3.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"sinon": "14.0.0",
"tap": "16.3.0",
"terminate": "2.5.0",
"typescript": "4.7.4",
"wait-on": "6.0.1"
}
}