This repository was archived by the owner on Mar 6, 2026. It is now read-only.
forked from imbhargav5/rooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.56 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
{
"name": "rooks-project",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/imbhargav5/rooks.git",
"author": "Bhargav Ponnapalli <imbhargav5@gmail.com>",
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"build": "turbo run build --force -vvv",
"typecheck": "turbo run typecheck -vvv",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"start": "turbo run start",
"coverage": "turbo run coverage",
"all-checks": "turbo run all-checks",
"commit": "cz",
"version-packages": "changeset version",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version && node ./scripts/bump-peer-dep-ranges.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"contributors:update": "node scripts/update-all-contributors/index.mjs",
"create": "node scripts/create/index.mjs",
"create:cli": "node scripts/create/cli.mjs",
"new": "pnpm run create",
"prebuild": "rimraf dist",
"update-package-list-to-markdown": "tsx scripts/update-package-list-to-markdown/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "if [[ $IS_GH_ACTION != 1 ]]; then lint-staged; fi;"
}
},
"lint-staged": {
"*.{html,js,ts,tsx,json,yml,css,scss}": "prettier --write"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@manypkg/cli": "^0.23.0",
"@manypkg/get-packages": "^2.2.2",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.16",
"@types/node": "^22.0.0",
"all-contributors-cli": "^6.26.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"lint-staged": "^15.5.0",
"lodash": "^4.17.21",
"mdast-util-from-markdown": "^2.0.2",
"mdast-zone": "^6.1.0",
"pkg-dir": "^8.0.0",
"prettier": "^3.5.3",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"tsx": "^4.19.2",
"turbo": "^2.5.4",
"typescript": "^5.8.2"
},
"resolutions": {
"prettier": "^2.8.7"
},
"packageManager": "pnpm@10.6.4+sha512.da3d715bfd22a9a105e6e8088cfc7826699332ded60c423b14ec613a185f1602206702ff0fe4c438cb15c979081ce4cb02568e364b15174503a63c7a8e2a5f6c",
"dependencies": {
"rimraf": "^6.0.1"
}
}