-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "genkitx-rxjs",
"version": "0.0.1",
"type": "commonjs",
"description": "",
"main": "index.js",
"scripts": {
"check": "tsc",
"compile": "tsup-node",
"build:clean": "rm -rf ./lib",
"build": "npm-run-all build:clean check compile",
"build:watch": "tsup-node --watch",
"test": "node --import tsx --test tests/*_test.ts"
},
"peerDependencies": {
"@genkit-ai/core": "^0.5.7",
"@genkit-ai/flow": "^0.5.7",
"zod": "^3.23.8",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.6",
"npm-run-all": "^4.1.5",
"tsup": "^8.1.1",
"typescript": "^5.5.3",
"tsx": "^4.16.2",
"@swc/core": "^1.6.13"
},
"repository": {
"type": "git",
"url": "https://github.com/pavelgj/genkitx-rxjs.git"
},
"keywords": [
"genkit",
"genkit-plugin",
"rxjs"
],
"files": [
"lib"
],
"author": "pavelgj",
"license": "Apache-2.0",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
}
}