-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 905 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": "llm.js",
"version": "2.0.1",
"description": "Run LLM models directly on browser.",
"type": "module",
"main": "dist/llm.js",
"keywords": [
"AI",
"ML",
"EdgeAI",
"LLM"
],
"scripts": {
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rahuldshetty/llm.js.git"
},
"author": "Rahul D Shetty",
"license": "ISC",
"bugs": {
"url": "https://github.com/rahuldshetty/llm.js/issues"
},
"homepage": "https://github.com/rahuldshetty/llm.js#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.9",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"docsify-cli": "^4.4.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"src",
"dist",
"README.md"
]
}