-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "inox-tools",
"version": "0.0.0",
"private": true,
"keywords": [
"astro",
"extensions",
"integrations",
"dev-tools"
],
"license": "MIT",
"author": "Luiz Ferraz <[email protected]>",
"type": "module",
"main": "index.js",
"scripts": {
"build": "turbo run --filter '@inox-tools/*' build",
"dev": "turbo run --filter '@inox-tools/*' dev",
"build:examples": "turbo run --filter '@example/*' build",
"docs:dev": "cd docs && pnpm dev",
"format": "prettier -w \"**/*\" --ignore-unknown --cache",
"postinstall": "node ./turbo/cache-key.mjs",
"release": "pnpm run build && changeset publish",
"test": "turbo run --concurrency=1 --filter '@inox-tools/*' test",
"test:e2e": "turbo run --concurrency=1 --filter '@inox-tools/*' test:e2e",
"version": "changeset version && pnpm install && pnpm format",
"cut-release": "pnpm build && changeset publish"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,astro,json,md,mdx}": "prettier --write"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@playwright/test": "catalog:",
"@types/node": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"turbo": "^2.4.0",
"typescript": "catalog:"
},
"packageManager": "[email protected]+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4",
"pnpm": {
"overrides": {
"@croct/sdk": "0.17.0",
"vite": "catalog:",
"picomatch": "3.0.1"
},
"patchedDependencies": {
"astro": "patches/astro.patch"
}
}
}