node-llama-cpp 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/package.json +61 -0
package/README.md
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "node-llama-cpp",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/",
|
|
10
|
+
"package.json",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"prepare": "[ $CI = true ] || [ -d '.husky/_' ] || husky install",
|
|
15
|
+
"prebuild": "rm -rf ./dist ./tsconfig.tsbuildinfo",
|
|
16
|
+
"build": "tsc --build tsconfig.json --force",
|
|
17
|
+
"prewatch": "rm -rf ./dist ./tsconfig.tsbuildinfo",
|
|
18
|
+
"watch": "tsc --build tsconfig.json --watch --force",
|
|
19
|
+
"test": "npm run test:typescript && npm run lint:eslint",
|
|
20
|
+
"test:typescript": "tsc --build tsconfig.json --dry --force",
|
|
21
|
+
"lint": "npm run lint:eslint",
|
|
22
|
+
"lint:eslint": "eslint --ext .js --ext .ts .",
|
|
23
|
+
"lint:fix": "npm run lint:eslint -- --fix",
|
|
24
|
+
"clean": "rm -rf ./node_modules ./dist ./tsconfig.tsbuildinfo"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+ssh://git@github.com:giladgd/node-llama-cpp.git"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"llama",
|
|
32
|
+
"llama-cpp",
|
|
33
|
+
"bindings",
|
|
34
|
+
"node-gyp",
|
|
35
|
+
"ai",
|
|
36
|
+
"llm",
|
|
37
|
+
"ggml",
|
|
38
|
+
"ggmlv3"
|
|
39
|
+
],
|
|
40
|
+
"author": "Gilad S.",
|
|
41
|
+
"license": "ISC",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/giladgd/node-llama-cpp/issues"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/giladgd/node-llama-cpp#readme",
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@commitlint/cli": "^17.7.1",
|
|
48
|
+
"@commitlint/config-conventional": "^17.7.0",
|
|
49
|
+
"@types/node": "^20.4.9",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
|
51
|
+
"@typescript-eslint/parser": "^6.3.0",
|
|
52
|
+
"eslint": "^8.46.0",
|
|
53
|
+
"eslint-plugin-import": "^2.28.0",
|
|
54
|
+
"eslint-plugin-node": "github:giladgd/eslint-plugin-node#dev/giladgd/fixImportExtentionFixingInTypeScript",
|
|
55
|
+
"husky": "^8.0.3",
|
|
56
|
+
"semantic-release": "^21.0.7",
|
|
57
|
+
"ts-node": "^10.9.1",
|
|
58
|
+
"tslib": "^2.6.1",
|
|
59
|
+
"typescript": "^5.1.6"
|
|
60
|
+
}
|
|
61
|
+
}
|