generated from abrenneke/rivet-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 842 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
{
"name": "rivet-plugin-ollama",
"packageManager": "yarn@3.5.0",
"version": "0.3.0",
"type": "module",
"main": "dist/bundle.js",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc -b && tsx bundle.ts",
"dev": "run-p watch:tsc watch:esbuild:sync",
"watch:tsc": "tsc -b -w --preserveWatchOutput",
"watch:esbuild": "tsx bundle.ts --watch",
"watch:esbuild:sync": "tsx bundle.ts --watch --sync",
"publish": "yarn npm publish --access public"
},
"dependencies": {
"@ironclad/rivet-core": "^1.13.2",
"ts-pattern": "^5.0.5"
},
"devDependencies": {
"esbuild": "^0.19.2",
"npm-run-all": "^4.1.5",
"recursive-copy": "^2.0.14",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
},
"volta": {
"node": "20.6.1"
},
"rivet": {
"skipInstall": true
}
}