-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "ollama",
"version": "0.0.0",
"description": "Ollama Javascript library",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./browser": {
"require": "./dist/browser.cjs",
"import": "./dist/browser.mjs",
"types": "./dist/browser.d.ts"
},
"./*": "./*"
},
"scripts": {
"format": "prettier --write .",
"test": "vitest --run",
"build": "unbuild",
"lint": "eslint ./src/*",
"prepublishOnly": "npm run build"
},
"homepage": "https://github.com/ollama/ollama-js",
"repository": {
"type": "git",
"url": "https://github.com/ollama/ollama-js.git"
},
"author": "Saul Boyd",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.3.14",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.29.0",
"vitest": "^2.1.6",
"prettier": "^3.2.4",
"typescript": "^5.3.2",
"unbuild": "^2.0.0"
},
"dependencies": {
"whatwg-fetch": "^3.6.20"
}
}