-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "ankiai",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"engines": {
"node": ">=18.x"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node build/main.js",
"prettier": "prettier --write .",
"eslint": "eslint src --max-warnings 0",
"test": "vitest",
"ci-build": "eslint . --max-warnings 0 && prettier --check . && vitest --run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"axios-debug-log": "^1.0.0",
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitest/coverage-c8": "^0.33.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"undici": "^5.20.0",
"vitest": "^0.34.5"
}
}