-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.76 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
{
"name": "kidd-mono",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"scripts": {
"format": "oxfmt",
"format:fix": "oxfmt --write",
"lint": "oxlint --ignore-pattern node_modules",
"lint:fix": "oxlint --fix --ignore-pattern node_modules",
"build": "turbo run build --filter='./packages/*'",
"dev": "turbo run dev",
"test": "turbo run test test:integration",
"test:bench": "vitest bench --config vitest.bench.config.ts",
"test:integration": "vitest run --config vitest.exports.config.ts",
"test:coverage": "turbo run test:coverage --filter='./packages/*'",
"test:watch": "turbo run build --filter='./packages/*' && vitest",
"typecheck": "turbo run typecheck --filter='./packages/*'",
"check": "turbo run typecheck --filter='./packages/*' && pnpm lint && pnpm format",
"validate": "turbo run typecheck --filter='./packages/*' && turbo run test --filter='./packages/*' && pnpm lint && pnpm format",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@clack/prompts": "^1.1.0",
"@codspeed/vitest-plugin": "^5.2.0",
"@types/node": "catalog:",
"@typescript/native-preview": "7.0.0-dev.20260323.1",
"@vitest/coverage-v8": "catalog:",
"eslint-plugin-functional": "^9.0.4",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-security": "^4.0.0",
"laufen": "^1.2.1",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"rimraf": "^6.1.3",
"ts-pattern": "catalog:",
"turbo": "^2.8.20",
"vitest": "catalog:",
"yaml": "^2.8.3"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.30.1"
}