-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "lockfile-affected-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/split/lockfile-affected"
},
"engines": {
"node": ">=22.14",
"pnpm": ">=9"
},
"scripts": {
"build": "tsc --build --clean && tsc --build",
"test": "pnpm -r run test",
"typecheck": "tsc --build",
"format": "prettier --write \"packages/**/*.{ts,json,md}\"",
"format:check": "prettier --check \"packages/**/*.{ts,json,md}\"",
"lint": "eslint \"packages/**/src/**/*.ts\""
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@lockfile-affected/core": "workspace:*",
"@lockfile-affected/lockfile-bun": "workspace:*",
"@lockfile-affected/lockfile-npm": "workspace:*",
"@lockfile-affected/lockfile-pnpm": "workspace:*",
"@lockfile-affected/lockfile-yarn": "workspace:*",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.22.0",
"prettier": "^3.4.0",
"semantic-release": "^24.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.26.0",
"vite-tsconfig-paths": "6.1.1",
"vitest": "^3.0.0"
}
}