-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.71 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
{
"name": "@fugood/llama.node",
"access": "public",
"version": "0.3.2",
"description": "Llama.cpp for Node.js",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"prepack": "yarn build",
"build-native": "cmake-js compile",
"clean": "rimraf build",
"prepare": "husky",
"commitlint": "commitlint --edit",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mybigday/llama.node.git"
},
"keywords": [
"llama",
"llm",
"ai",
"genai"
],
"author": "Hans <hans.chen@bricks.tools>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mybigday/llama.node/issues"
},
"homepage": "https://github.com/mybigday/llama.node#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"binary": {
"napi_versions": [
5
]
},
"files": [
"patches/*.patch",
"bin/**/*",
"src/**/*.{c,cc,cpp,h,hh,hpp,txt,cmake}",
"lib/*.js",
"lib/*.ts",
"CMakeLists.txt"
],
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"cmake-js": "^7.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"release-it": "^17.7.0",
"rimraf": "^6.0.1",
"typescript": "^5.4.5",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"node-addon-api": "^8.0.0"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"**/*.test.ts"
]
}
}