-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.49 KB
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
{
"name": "github-actions",
"type": "commonjs",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.14.0",
"description": "A collection of reusable GitHub composite actions for common CI/CD workflows",
"author": "m.doaie <m.doaie@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/pixpilot/github-actions",
"repository": {
"type": "git",
"url": "https://github.com/pixpilot/github-actions.git"
},
"bugs": {
"url": "https://github.com/pixpilot/github-actions/issues"
},
"main": "index.js",
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"tsc:watch": "tsc --noEmit --watch --project tsconfig.watch.json",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache && pnpm lint:root",
"lint:fix": "pnpm lint --fix && pnpm lint:root:fix",
"lint:root": "eslint .github *.config.{js,cjs,mjs,ts} *.json README.md --cache --cache-location .cache/.eslintcache",
"lint:root:fix": "pnpm lint:root --fix",
"lint:ws": "pnpm dlx sherif@latest",
"fix:all": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"postinstall": "pnpm lint:ws",
"test": "turbo run test",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage --config tooling/vitest/index.js",
"typecheck": "turbo run typecheck",
"clean:workspaces": "turbo run clean",
"clean:workspaces:install": "pnpm clean:workspaces && pnpm install",
"deps:update": "npx taze -r -w && pnpm install",
"deps:update:major": "npx taze major -r -w && pnpm install",
"turbo:gen:init": "pnpm turbo gen init",
"changeset": "changeset"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@internal/prettier-config": "workspace:*",
"@pixpilot/dev-config": "catalog:dev",
"@pixpilot/workspace-package-generator": "^2.1.1",
"@turbo/gen": "^2.5.5",
"@types/node": "catalog:dev",
"@vitest/coverage-v8": "catalog:dev",
"@vitest/ui": "catalog:dev",
"eslint": "catalog:dev",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "catalog:dev",
"rimraf": "^6.0.1",
"tsx": "^4.20.4",
"turbo": "^2.5.5",
"typescript": "catalog:dev",
"vitest": "catalog:dev"
}
}