This repository has been archived by the owner on Dec 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.67 KB
/
package.json
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
{
"$schema": "https://json.schemastore.org/package",
"private": true,
"type": "module",
"name": "@workspace/root",
"version": "0.0.0",
"homepage": "https://github.com/terminal-nerds/snippets",
"repository": "terminal-nerds/snippets.git",
"bugs": "https://github.com/terminal-nerds/snippets/issues",
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"optionalDependencies": {
"concurrently": "8.2.0",
"del-cli": "5.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"tsx": "3.12.7"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@scripts/generate": "workspace:*",
"@terminal-nerds/browserslist-config": "0.3.0",
"@terminal-nerds/eslint-config": "0.24.0",
"@terminal-nerds/lint-staged-config": "0.5.0",
"@terminal-nerds/markdownlint-config": "0.9.0",
"@terminal-nerds/prettier-config": "0.12.0",
"@terminal-nerds/syncpack-config": "0.6.0",
"@terminal-nerds/tsup-config": "0.4.0",
"@terminal-nerds/typescript-config": "0.6.1",
"@terminal-nerds/vitest-config": "0.9.0",
"@total-typescript/ts-reset": "0.4.2",
"@types/node": "18.16.13",
"browserslist": "4.21.5",
"bun-types": "0.6.2",
"depcheck": "1.4.3",
"eslint": "8.41.0",
"markdownlint-cli": "0.34.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"syncpack": "9.8.6",
"tsup": "6.7.0",
"turbo": "1.10.8",
"typescript": "5.0.4",
"vitest": "0.31.1"
},
"scripts": {
"build:pkgs": "turbo run build --api=$TURBO_API",
"changelog": "pnpm changeset add",
"clean": "concurrently \"pnpm:clean:*\" --group --timings",
"clean:cache": "del \"./node_modules/.cache\"",
"clean:test": "del \"./coverage\"",
"dev:pkgs": "turbo run dev:pkg",
"dev:test": "vitest watch --dir \"./packages\" --ui",
"fix": "concurrently \"pnpm:fix:*\" --group --timings",
"fix:format": "pretty-quick --branch main --pattern \"**/*\" --verbose",
"fix:js": "pnpm lint:js --fix",
"fix:md": "pnpm lint:md --fix",
"fix:pkgs": "syncpack format ; syncpack fix-mismatches",
"generate": "generate",
"lint": "concurrently \"pnpm:lint:*\" --group --timings",
"lint:deps": "depcheck",
"lint:format": "pnpm fix:format --check",
"lint:js": "DEBUG=\"eslint:cli-engine\" eslint . --ext .cjs,.js,.ts,.json,.yml --cache --cache-location \"./node_modules/.cache/eslint\" --ignore-pattern \"/packages/\" --ignore-pattern \"/types/\"",
"lint:md": "markdownlint . --dot --ignore-path \"./.gitignore\" --ignore \"./packages/**/*\"",
"lint:pkgs": "syncpack list-mismatches",
"lint:staged": "lint-staged --verbose",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"supported": "browserslist",
"test:unit": "vitest run --dir \"./packages\""
}
}