forked from kitschpatrol/shared-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "shared-config-monorepo",
"version": "9.0.0",
"private": true,
"description": "A single dependency and single command to configure and run various code linters and tools.",
"keywords": [
"shared-config",
"eslint-config",
"stylelint-config",
"prettier-config",
"browserslist-config",
"typescript-config",
"remark-config",
"remark-lint",
"github-actions",
"cspell",
"tsconfig",
"mdat",
"cli",
"envsa",
"npm-package"
],
"homepage": "https://github.com/envsa/shared-config",
"bugs": "https://github.com/envsa/shared-config/issues",
"repository": {
"type": "git",
"url": "[email protected]:envsa/shared-config.git"
},
"license": "MIT",
"author": {
"name": "Liam Rella",
"url": "https://github.com/rellafella"
},
"type": "module",
"scripts": {
"bin-ignore": "git ls-files | grep cli.js | xargs -I {} git update-index --skip-worktree {}",
"bin-restore": "pnpm run bin-unignore && git ls-files | grep cli.js | xargs -I {} git restore --source HEAD -- {} && pnpm run bin-ignore",
"bin-unignore": "git ls-files | grep cli.js | xargs -I {} git update-index --no-skip-worktree {}",
"build": "pnpm run build:1-stand-alone && pnpm run build:2-shared && pnpm run build:3-readmes",
"build:1-stand-alone": "pnpm --filter=!shared-config build",
"build:2-shared": "pnpm --filter=shared-config build",
"build:3-readmes": "pnpm envsa-mdat fix && cp ./packages/shared-config/readme.md ./readme.md && envsa-prettier fix",
"clean": "git rm -f pnpm-lock.yaml ; pnpm run bin-restore ; git clean -fdXq",
"fix": "envsa fix",
"lint": "envsa lint",
"merge-ignores": "ksdiff --merge ./packages/eslint-config/.eslintignore ./packages/stylelint-config/.stylelintignore",
"nuke": "rm -rf node_modules packages/*/node_modules pnpm-lock.yaml && pnpm install",
"prepublishOnly": "pnpm run build",
"release": "pnpm bumpp -r --commit 'release: %s' --tag 'v%s' && pnpm -r publish --otp $(op read 'op://Personal/NPM/one-time password?attribute=otp')",
"test": "vitest"
},
"devDependencies": {
"@envsa/cspell-config": "workspace:*",
"@envsa/eslint-config": "workspace:*",
"@envsa/mdat-config": "workspace:*",
"@envsa/prettier-config": "workspace:*",
"@envsa/remark-config": "workspace:*",
"@envsa/repo-config": "workspace:*",
"@envsa/shared-config": "workspace:*",
"@envsa/stylelint-config": "workspace:*",
"@envsa/typescript-config": "workspace:*",
"@pinojs/json-colorizer": "^4.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.2",
"@types/yargs": "^17.0.33",
"bumpp": "^10.0.3",
"chalk": "^5.4.1",
"cosmiconfig": "^9.0.0",
"decircular": "^1.0.0",
"deepmerge": "^4.3.1",
"esbuild": "^0.25.0",
"execa": "^9.5.2",
"find-workspaces": "^0.3.1",
"fs-extra": "^11.3.0",
"json-stringify-pretty-compact": "^4.0.0",
"package-up": "^5.0.0",
"prettier": "^3.5.0",
"tsx": "^4.19.2",
"typescript": "~5.7.3",
"vitest": "^3.0.5",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]+sha512.ee592eda8815a8a293c206bb0917c4bb0ff274c50def7cbc17be05ec641fc2d1b02490ce660061356bd0d126a4d7eb2ec8830e6959fb8a447571c631d5a2442d",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"puppeteer"
],
"overrides": {
"eslint-plugin-markdown": "^5.1.0"
}
}
}