-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 907 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
35
36
37
38
39
40
41
{
"name": "rwkv-cpp-node",
"version": "2.0.5",
"description": "RWKV.cpp bindings for node.js - includes CLI tooling to quickly download and run your RWKV raven models",
"main": "src/RWKV.js",
"scripts": {
"test": "mocha \"./test/**/*.test.js\" --exit --trace-warnings"
},
"bin": {
"rwkv-cpp-node": "./src/cli.js"
},
"keywords": [
"RWKV",
"AI",
"LLM",
"RWKV.cpp"
],
"homepage": "https://github.com/RWKV/RWKV-cpp-node/",
"author": "Eugene Cheah (@picocreator)",
"license": "MIT",
"dependencies": {
"inquirer": "^9.2.1",
"koffi": "^2.5.0",
"lru-cache": "^7.18.1",
"node-fetch": "^3.3.1",
"progress": "^2.0.3",
"promise-queue": "^2.2.5",
"rwkv-tokenizer-node": "^1.0.3"
},
"optionalDependencies": {
"cpu-features": "^0.0.7"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}