This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
96 lines (96 loc) · 2.6 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
{
"name": "llama-node",
"version": "0.1.6",
"description": "Node.js Library for Large Language Model LLaMA/RWKV",
"keywords": [
"llama",
"rwkv",
"vicuna",
"gpt",
"chatgpt",
"gpt4all",
"nlp",
"large language model",
"llm",
"chat"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"prepublish": "pnpm run build && pnpm run build:cli && pnpm run artifacts",
"type-check": "tsc --noEmit",
"artifacts": "tsx scripts/artifacts.ts",
"version": "tsx scripts/version.ts",
"build:cli": "pnpm run --filter=@llama-node/cli build",
"start:docs": "pnpm run --filter=@llama-node/docs start",
"build:docs": "pnpm run --filter=@llama-node/docs build",
"serve:docs": "pnpm run --filter=@llama-node/docs serve",
"build:llm-rs": "pnpm run --filter=@llama-node/core cross-compile",
"build:llama-cpp": "pnpm run --filter=@llama-node/llama-cpp cross-compile",
"build:rwkv-cpp": "pnpm run --filter=@llama-node/rwkv-cpp cross-compile",
"build:example": "pnpm run --filter=@llama-node/examples build"
},
"repository": {
"type": "git",
"test": "tsx",
"url": "git+https://github.com/Atome-FE/llama-node.git"
},
"workspaces": [
"packages/docs",
"packages/core",
"packages/cli",
"packages/llama-cpp",
"example"
],
"author": "hlhr202@163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/Atome-FE/llama-node/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0",
"pnpm": ">=6.0.0"
},
"packageManager": "pnpm@6.0.0",
"homepage": "https://llama-node.vercel.app/",
"devDependencies": {
"@llama-node/cli": "0.1.6",
"@llama-node/core": "0.1.6",
"@llama-node/llama-cpp": "0.1.6",
"@llama-node/rwkv-cpp": "0.1.6",
"@napi-rs/cli": "^2.15.2",
"@tensorflow/tfjs-node": "^4.2.0",
"@types/node": "^18.15.5",
"@types/semver": "^7.3.13",
"axios": "*",
"cross-env": "^7.0.3",
"glob": "^9.3.4",
"langchain": "^0.0.56",
"p-all": "^5.0.0",
"rimraf": "^4.4.1",
"semver": "^7.3.8",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitest": "^0.30.1"
},
"dependencies": {
"@llama-node/cli": "0.1.6"
},
"optionalDependencies": {
"@llama-node/core": "0.1.6",
"@llama-node/llama-cpp": "0.1.6",
"@llama-node/rwkv-cpp": "0.1.6"
},
"peerDependencies": {
"@llama-node/cli": "0.1.6",
"@llama-node/core": "0.1.6",
"@llama-node/llama-cpp": "0.1.6",
"@llama-node/rwkv-cpp": "0.1.6"
}
}