-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.35 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.35 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
{
"name": "langfuse-experiment-action",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to run Langfuse experiments in CI",
"license": "MIT",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@9.12.3",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt && node scripts/copy-wrappers.mjs",
"generate:schema": "node --import tsx scripts/generate-result-json-schema.ts",
"check:schema": "node --import tsx scripts/check-result-json-schema.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests \"scripts/**/*.ts\"",
"lint:fix": "eslint src tests \"scripts/**/*.ts\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check-dist": "pnpm run build && git diff --exit-code -- dist",
"precommit:check": "pnpm run lint && pnpm run typecheck && pnpm run format:check && pnpm run check:schema",
"dev": "node scripts/langfuse-server.mjs up && node scripts/langfuse-server.mjs wait",
"dev:up": "node scripts/langfuse-server.mjs up",
"dev:wait": "node scripts/langfuse-server.mjs wait",
"dev:down": "node scripts/langfuse-server.mjs down",
"all": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run check:schema && pnpm run build",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/glob": "^0.7.0",
"@actions/io": "^3.0.2",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"valibot": "^1.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@langfuse/client": "5.3.0-beta.0",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.0",
"@valibot/to-json-schema": "1.6.0",
"@vercel/ncc": "^0.38.2",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-sonarjs": "^4.0.3",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}