forked from kitschpatrol/shared-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.87 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
{
"name": "root",
"version": "8.2.0",
"type": "module",
"description": "A single dependency and single command to configure and run various code linters and tools.",
"repository": {
"type": "git",
"url": "[email protected]:envsa/shared-config.git"
},
"homepage": "https://github.com/envsa/shared-config",
"bugs": {
"url": "https://github.com/envsa/shared-config/issues",
"email": "[email protected]"
},
"author": {
"name": "Liam Rella",
"email": "[email protected]",
"url": "https://github.com/rellafella"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [
"shared-config",
"eslint-config",
"stylelint-config",
"prettier-config",
"browserslist-config",
"github-actions",
"cspell",
"mdat",
"cli",
"npm-package"
],
"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:stand-alone && pnpm run build:shared && cp ./packages/shared-config/readme.md ./readme.md ",
"build:shared": "pnpm --filter=shared-config build",
"build:stand-alone": "pnpm --filter=!shared-config build",
"clean": "pnpm run bin-restore && git clean -fdXq && rm ./pnpm-lock.yaml",
"fix": "pnpm shared-config --fix",
"lint": "pnpm shared-config --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')"
},
"devDependencies": {
"@envsa/browserslist-config": "workspace:*",
"@envsa/cspell-config": "workspace:*",
"@envsa/eslint-config": "workspace:*",
"@envsa/mdat-config": "workspace:*",
"@envsa/prettier-config": "workspace:*",
"@envsa/repo-config": "workspace:*",
"@envsa/shared-config": "workspace:*",
"@envsa/stylelint-config": "workspace:*",
"@pinojs/json-colorizer": "^4.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"bumpp": "^9.9.1",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"deepmerge": "^4.3.1",
"esbuild": "^0.24.0",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"json-stringify-pretty-compact": "^4.0.0",
"mdat": "^0.8.1",
"meow": "^13.2.0",
"package-up": "^5.0.0",
"tsx": "^4.19.2",
"typescript": "~5.7.2"
}
}