-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 983 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 983 Bytes
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
{
"name": "node-qnn-llm",
"version": "2.1.0",
"description": "QNN LLM binding for Node.js",
"main": "index.js",
"repository": "https://github.com/mybigday/node-qnn-llm",
"author": "Hans <hans.chen@bricks.tools>",
"license": "MIT",
"optionalDependencies": {
"@fugood/node-qnn-llm-linux-arm64": "2.1.0",
"@fugood/node-qnn-llm-win32-arm64": "2.1.0"
},
"devDependencies": {
"cmake-js": "^7.3.0",
"node-addon-api": "^8.0.0",
"release-it": "^19.0.4"
},
"scripts": {
"build": "cmake-js build",
"rebuild": "cmake-js rebuild",
"release": "release-it",
"bootstrap": "npm install --omit=optional",
"update-version": "node scripts/update-version.js"
},
"keywords": [
"qualcomm",
"npu",
"llm",
"llama",
"ai"
],
"files": [
"index.js",
"htp_backend_ext_config.json"
],
"binary": {
"napi_versions": [
7
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}