-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "@fieldtest/core",
"version": "1.0.2",
"private": true,
"description": "Open source validation toolkit for data pipelines, APIs, and integrations. Built with TypeScript for modern development workflows.",
"keywords": [
"validation",
"typescript",
"schema",
"data-pipeline",
"api-testing",
"integration-testing",
"standard-schema",
"quality-assurance",
"ci-cd"
],
"homepage": "https://fieldtest.watthem.blog",
"repository": {
"type": "git",
"url": "https://github.com/watthem/fieldtest.git",
"directory": "fieldtest"
},
"bugs": {
"url": "https://github.com/watthem/fieldtest/issues"
},
"author": "Matthew Hendricks <hello@matthewhendricks.net>",
"license": "MIT",
"packageManager": "pnpm@8.15.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"biome:check": "biome check .",
"biome:lint": "biome lint .",
"biome:format": "biome format --write .",
"biome:fix": "biome check --write .",
"docs:dev": "vitepress dev docs",
"docs:validate": "node ./scripts/fieldtest-validate.mjs",
"docs:build": "pnpm docs:validate && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@fieldtest/core": "workspace:*",
"turbo": "^2.1.0",
"typescript": "^5.3.0",
"vitepress": "^1.6.4"
}
}