-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "ssh://[email protected]/lukeshay/npm.git",
"directory": "."
},
"license": "MIT",
"author": "Luke Shay <https://lukeshay.com>",
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "CHANGESET=1 changeset",
"lint": "yarn workspaces foreach run lint",
"lint:fix": "yarn workspaces foreach run lint:fix",
"format": "prettier --write --check .",
"release": "yarn build && changeset version && yarn format && git add . && git commit -m 'new versions' && changeset publish && git push --follow-tags"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write",
"git add"
]
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@lshay/eslint-config": "workspace:^",
"@lshay/eslint-config-flat": "workspace:^",
"@lshay/prettier-config": "workspace:^",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20",
"@vercel/git-hooks": "^1.0.0",
"eslint": "^8.54.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "16.x || 18.x || 20.x"
},
"publishConfig": {
"access": "public"
}
}