-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "shared-configs",
"type": "module",
"description": "Guild's shared configs following our styleguide",
"repository": "[email protected]:the-guild-org/shared-config.git",
"author": {
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "echo No build command, skipping…",
"cspell": "cspell --gitignore **/*",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --cache --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check .",
"lint:remote": "eslint-remote-tester",
"prettier": "pnpm lint:prettier --write",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@shopify/eslint-plugin": "46.0.0",
"@theguild/eslint-config": "workspace:*",
"@theguild/prettier-config": "workspace:*",
"@types/eslint": "9.6.1",
"@types/node": "22.10.1",
"cspell": "8.16.1",
"eslint": "9.17.0",
"eslint-remote-tester": "3.0.1",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}