-
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.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.92 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": "node-basic",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"engineStrict": true,
"engines": {
"pnpm": ">=10.17.0",
"node": ">=24.3.0"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:bdd": "cucumber-js --config cucumber.config.cjs",
"test:all": "vitest run && cucumber-js --config cucumber.config.cjs",
"test:coverage": "vitest run --coverage",
"test:full": "vitest run && cucumber-js --config cucumber.config.cjs && eslint src --ext .ts,.tsx && tsc --noEmit && prettier --check 'src/**/*.ts'",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write 'src/**/*.ts'",
"prettier": "prettier --check 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"deps:check": "pnpm outdated",
"deps:update": "pnpm update --latest",
"deps:update-interactive": "pnpm update --latest --interactive",
"deps:update-check": "pnpm update --latest --dry-run",
"doc:coverage": "node ./node_modules/llm-mem/packages/cli/dist/mem-coverage.js --config=.coverage.json",
"postinstall": "node scripts/get-repo-owner.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.17.0",
"dependencies": {
"winston": "^3.18.3"
},
"devDependencies": {
"@cucumber/cucumber": "^10.9.0",
"@dotenvx/dotenvx": "^1.51.1",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "4.0.3",
"chai": "^4.5.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"llm-mem": "github:kernpunkt/llm-mem",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.10",
"zod": "^4.1.12"
}
}