-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.21 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
{
"name": "zod-tag",
"version": "0.0.8",
"description": "Typesafe runtime validation for tagged template strings leveraging zod schemas",
"private": false,
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"zod",
"tagged-templates",
"type-safety",
"validation",
"typescript",
"interpolation",
"code-generation",
"composition",
"query-builder",
"parameterized-queries",
"dsl",
"email-templates",
"graphql",
"sqlite",
"prompt-engineering",
"llm",
"pattern-matching"
],
"author": "Nícolas Berbel <nicolas.berbel@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/NicolasBerbel/zod-tag.git"
},
"bugs": {
"url": "https://github.com/NicolasBerbel/zod-tag/issues"
},
"homepage": "https://github.com/NicolasBerbel/zod-tag#readme",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"scripts": {
"test": "node --test --expose-gc --experimental-test-coverage src/**/*.test.ts",
"test:o": "node src/__tests__/snapshot.ts",
"test:memory": "node --test --expose-gc --experimental-test-coverage src/__tests__/suite/memory.test.ts",
"test:slop": "node --test --experimental-test-coverage src/__tests__/slop/*",
"test:suite": "node --test --watch --experimental-test-coverage src/__tests__/suite/*",
"test:suite:gc": "node --test --watch --expose-gc --experimental-test-coverage src/__tests__/suite/*",
"test:watch": "node --test --watch --experimental-test-coverage src/**/*.test.ts",
"play": "node --watch src/__tests__/play.ts",
"type-check": "tsc --noEmit",
"build": "rolldown -c",
"dev": "rolldown -c --watch"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"better-sqlite3": "^12.9.0",
"rolldown": "1.0.0-rc.16",
"rolldown-plugin-dts": "^0.23.2",
"sqlite3": "^6.0.1",
"typescript": "^6.0.3",
"zod": "^4.0.0"
},
"peerDependencies": {
"zod": "^4.0.0"
}
}