-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "root-tagscript",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/tagscript.git"
},
"workspaces": [
"packages/*",
"apps/*"
],
"type": "module",
"scripts": {
"bench": "bun scripts/bench.mjs",
"build": "turbo run build",
"bump": "bun scripts/bump.mjs",
"check-update": "bun scripts/bump.mjs --dry-run --yes",
"clean": "bun scripts/clean.mjs",
"clean:full": "bun scripts/clean-full.mjs",
"docs": "bun scripts/generateDocs.mjs",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --fix .",
"lint:check": "oxlint .",
"postinstall": "husky .github/husky",
"preflight": "bun run typecheck && git diff --name-only HEAD | xargs bunx oxfmt && git diff --name-only HEAD | xargs bunx oxlint --fix",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"update": "bun update --interactive"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.1.0",
"@favware/colorette-spinner": "^1.0.1",
"@imranbarbhuiya/oxc-config": "^0.1.12",
"@types/bun": "^1.4.0",
"@types/node": "^22.20.1",
"@types/prompts": "^2.4.9",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"mitata": "^1.0.34",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"prompts": "^2.4.2",
"tsdown": "^0.22.14",
"turbo": "^2.10.12",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "4.13.0",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "^6.0.3"
},
"lint-staged": {
"*": "oxfmt",
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}": "oxlint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=v22.0.0"
},
"packageManager": "bun@1.4.0"
}