-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.51 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
{
"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"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,astro,json,md,mdx}": "prettier --write"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@types/node": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"pnpm": {
"overrides": {
"@croct/sdk": "0.17.0",
"picomatch": "3.0.1"
}
}
}