-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
119 lines (119 loc) · 3.29 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
110
111
112
113
114
115
116
117
118
119
{
"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",
"provenance": true
},
"files": [
"build",
"!**/*.test.js",
"!**/*.test.d.ts",
"!**/*.map"
],
"imports": {
"#src/*": "./build/*"
},
"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",
"start": "node --enable-source-maps build/index.js",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
"lint:staged": "lint-staged",
"test:unit": "cross-env NODE_ENV=test node --enable-source-maps --test build/",
"test:e2e": "cross-env NODE_ENV=test node --enable-source-maps --test ./build/e2e/classic.test.e2e.js",
"release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@sinclair/typebox": "0.31.23",
"chalk": "5.3.0",
"clipanion": "3.2.1",
"conf": "12.0.0",
"date-and-time": "3.0.3",
"execa": "8.0.1",
"ora": "7.0.1",
"read-pkg": "9.0.0",
"simple-git": "3.20.0",
"table": "6.8.1",
"typanion": "3.14.0",
"update-notifier": "7.0.0"
},
"devDependencies": {
"@commitlint/cli": "18.4.1",
"@commitlint/config-conventional": "18.4.0",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.96",
"@tsconfig/strictest": "2.0.2",
"@types/mock-fs": "4.13.4",
"@types/node": "20.9.0",
"@types/sinon": "17.0.1",
"@types/update-notifier": "6.0.7",
"@types/wait-on": "5.3.4",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"cross-env": "7.0.3",
"editorconfig-checker": "5.1.1",
"eslint": "8.53.0",
"eslint-config-conventions": "13.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "49.0.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"markdownlint-cli2": "0.10.0",
"markdownlint-rule-relative-links": "2.1.0",
"mock-fs": "5.2.0",
"mocked-env": "1.3.5",
"pinst": "3.0.0",
"prettier": "3.1.0",
"rimraf": "5.0.5",
"semantic-release": "22.0.7",
"sinon": "17.0.1",
"terminate": "2.6.1",
"typescript": "5.2.2",
"wait-on": "7.2.0"
}
}