forked from davideast/dataprompt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.28 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.28 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dataprompt",
"version": "0.0.5",
"description": "Prompts with data superpowers",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli/index.js",
"license": "Apache-2.0",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./plugins/firebase": {
"import": "./dist/plugins/firebase/public.js",
"types": "./dist/plugins/firebase/public.d.ts"
},
"./plugins/fetch": {
"import": "./dist/plugins/fetch/public.js",
"types": "./dist/plugins/fetch/public.d.ts"
},
"./plugins/scheduler": {
"import": "./dist/plugins/scheduler/public.js",
"types": "./dist/plugins/scheduler/public.d.ts"
},
"./plugins/fs": {
"import": "./dist/plugins/fs/public.js",
"types": "./dist/plugins/fs/public.d.ts"
}
},
"files": [
"dist",
"src/firebase/package.json"
],
"scripts": {
"test": "vitest",
"packx": "npm pack && npm i --prefix ./examples ./dataprompt-0.0.2.tgz",
"build": "tsc",
"clean": "rimraf ./dataprompt-0.0.5.tgz ./dist",
"prepack": "npm run clean && npm run build",
"postbuild": "chmod +x dist/cli/index.js",
"c": "tsx ./src/context/index.ts",
"cc": "tsx ./src/context/index.ts -c -o ./gen/context.txt",
"c:all": "npm run c -- -o ./gen/context.txt ./src/index.ts"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/memory-fs": "^0.3.7",
"@types/node": "^22.10.10",
"@types/node-cron": "^3.0.11",
"@types/stringify-object": "^4.0.5",
"@vitest/coverage-v8": "^3.0.5",
"memory-fs": "^0.5.0",
"nodemon": "^3.1.0",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@genkit-ai/flow": "^0.5.17",
"@genkit-ai/googleai": "^1.0.4",
"@types/supertest": "^6.0.2",
"date-fns": "^4.1.0",
"dotprompt": "^1.0.1",
"express": "^4.21.2",
"find-up": "^7.0.0",
"firebase-admin": "^13.0.2",
"js-yaml": "^4.1.0",
"json-schema-to-zod": "^2.6.0",
"node-cron": "^3.0.3",
"path-to-regexp": "^8.2.0",
"picocolors": "^1.1.1"
},
"peerDependencies": {
"genkit": "^1.0.4"
}
}