forked from imranbarbhuiya/TagScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 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
{
"name": "root-tagscript",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"bump": "turbo run bump --concurrency=1",
"check-update": "turbo run check-update",
"clean": "node scripts/clean.mjs",
"clean:full": "node scripts/clean-full.mjs",
"docs": "node scripts/generateDocs.mjs",
"format": "prettier --cache --write .",
"lint": "turbo run lint",
"update": "yarn upgrade-interactive",
"postinstall": "husky install .github/husky",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.0.0",
"@favware/colorette-spinner": "^1.0.1",
"@favware/npm-deprecate": "^2.0.0",
"@types/node": "^22.18.8",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^3.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.37.0",
"eslint-config-mahir": "^1.0.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"tsup": "^8.5.0",
"turbo": "^2.5.8",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "4.9.0",
"typedoc-plugin-mdn-links": "^5.0.9",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/tagscript.git"
},
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@4.9.2",
"nextBundleAnalysis": {}
}