-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.61 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"author": "Lukas Riha <lukas.riha94@seznam.cz>",
"contributors": [
"Lukas Riha <lukas.riha94@seznam.cz>",
"Lukas Riha <lukas.riha@cleevio.com>"
],
"dependencies": {
"is-ci": "^4.1.0",
"npm-run-all2": "^9.0.2"
},
"description": "Toolkit repo, which serves as a POC for our @cleeviox toolkit package.",
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@changesets/cli": "^2.31.0",
"@cleeviox/biome": "workspace:*",
"@cleeviox/knip": "workspace:*",
"@cleeviox/lint-staged": "workspace:*",
"@cleeviox/tsconfig": "workspace:*",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/types": "^21.0.1",
"@manypkg/cli": "^0.25.1",
"@scaleway/changesets-renovate": "^3.0.2",
"@types/node": "^25.6.0",
"del-cli": "^7.0.0",
"husky": "^9.1.7",
"knip": "^6.16.1",
"lint-staged": "^17.0.7",
"turbo": "^2.9.17",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24.16.0"
},
"license": "MIT",
"manypkg": {
"ignoredRules": [
"ROOT_HAS_PROD_DEPENDENCIES"
]
},
"name": "toolkit",
"overrides": {
"ajv": ">=8.20.0"
},
"packageManager": "bun@1.3.10",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cleevio/cleeviox-toolkit"
},
"scripts": {
"build": "turbo run build --no-daemon",
"check": "biome check",
"check:root": "biome check --write",
"clean": "turbo run clean --no-daemon",
"fix": "turbo run fix fix:root --no-daemon",
"fix:root": "run-s biome:check:fix && run-p ts",
"format": "turbo run format format:root --no-daemon --parallel",
"format:fix": "turbo run format:fix format:root:fix --no-daemon --parallel",
"format:root": "biome format .",
"format:root:fix": "biome format --write .",
"knip": "turbo run knip:root --no-daemon",
"knip:root": "knip",
"lint": "turbo run lint lint:root --no-daemon",
"lint:fix": "turbo run lint:fix lint:root:fix --no-daemon",
"lint:root": "biome lint .",
"lint:root:fix": "biome lint --write .",
"manypkg:fix": "bun manypkg fix",
"postclean": "del-cli .turbo tsconfig.tsbuildinfo node_modules",
"postinstall": "is-ci || run-s postinstall:check postinstall:husky",
"postinstall:check": "manypkg check",
"postinstall:husky": "husky",
"prepare": "is-ci || run-s build",
"test": "turbo run test --no-daemon",
"test:cov": "turbo run test:cov --no-daemon",
"ts": "turbo run ts ts:root --no-daemon",
"ts:root": "tsc --project tsconfig.json"
},
"type": "module",
"version": "0.0.0",
"workspaces": [
"packages/*"
]
}