-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 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
{
"name": "geval",
"version": "0.0.1",
"private": true,
"description": "Open-source eval-driven release enforcement for AI",
"repository": {
"type": "git",
"url": "https://github.com/geval-labs/geval.git"
},
"homepage": "https://geval.io",
"bugs": {
"url": "https://github.com/geval-labs/geval/issues"
},
"license": "MIT",
"author": "Geval Contributors",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky install",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"turbo": "^1.11.2",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"packageManager": "npm@10.2.0",
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@geval-labs/cli": "^0.0.2",
"@geval-labs/core": "^0.0.1"
}
}