-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "@funkai/prompts",
"version": "0.4.1",
"private": false,
"description": "Prompt SDK with LiquidJS templating and Zod validation",
"keywords": [
"ai",
"codegen",
"liquidjs",
"prompts",
"templates",
"typescript",
"zod"
],
"homepage": "https://github.com/joggrdocs/funkai/tree/main/packages/prompts#readme",
"bugs": {
"url": "https://github.com/joggrdocs/funkai/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joggrdocs/funkai.git",
"directory": "packages/prompts"
},
"type": "module",
"exports": {
".": {
"types": "./dist/lib/index.d.mts",
"import": "./dist/lib/index.mjs"
},
"./runtime": {
"types": "./dist/lib/runtime.d.mts",
"import": "./dist/lib/runtime.mjs"
},
"./cli": {
"types": "./dist/lib/cli.d.mts",
"import": "./dist/lib/cli.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown && cp -r src/prompts dist/prompts",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"es-toolkit": "catalog:",
"liquidjs": "^10.25.5",
"zod": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24.0.0"
}
}