-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 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
68
69
70
71
72
73
74
75
76
77
{
"name": "@offline-ai/cli-common",
"version": "0.3.0",
"author": "Riceball LEE <snowyu.lee@gmail.com>",
"homepage": "https://github.com/offline-ai/cli-common.js",
"repository": "https://github.com/offline-ai/cli-common.js",
"bugs": "https://github.com/@offline-ai/cli-common/issues",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build-fast": "tsup",
"build": "pnpm run build-fast --dts-resolve --dts && pnpm run doc:md",
"clean": "rm -fr web docs dist",
"doc": "typedoc --plugin none --out web",
"doc:md": "typedoc --plugin typedoc-plugin-markdown --out docs",
"style": "pnpm run format -c && pnpm run lint",
"style:fix": "pnpm run format:fix && npm run lint:fix",
"format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"",
"format:fix": "pnpm run format --write",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"test": "vitest run",
"release": "pnpm run clean && pnpm run build && git add -f docs && git ci -m 'docs: update API docs' && pnpm dlx commit-and-tag-version -s",
"release.alpha": "pnpm run release -- --prerelease alpha"
},
"dependencies": {
"@isdk/ai-tool": "workspace:*",
"@isdk/ai-tool-agent": "workspace:*",
"@oclif/core": "^4",
"ansi-colors": "^4.1.3",
"figlet": "^1.7.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.2",
"@types/better-sqlite3": "^7.6.11",
"@types/figlet": "^1.5.8",
"@types/jest": "^29.5.13",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
"prettier": "^3.3.3",
"terser": "^5.32.0",
"tsup": "^8.2.4",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"files": [
"docs",
"dist"
],
"keywords": [
"ai",
"ai-tool",
"tool",
"llm"
],
"maintainers": [
"Riceball LEE <snowyu.lee@gmail.com>"
],
"engines": {
"node": ">=20.11.1"
},
"types": "./dist/index.d.ts"
}