-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 896 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 896 Bytes
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
{
"description": "Enterprise-grade GitHub Actions monorepo",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^20.19.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^1.13.4",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"name": "@restack/actions",
"packageManager": "pnpm@8.15.1",
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"lint": "turbo run lint",
"prepare": "husky install",
"release": "turbo run build && changeset publish",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"version": "changeset version"
},
"version": "0.0.0"
}