-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "fetchtastic-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:fveracoechea/fetchtastic.git"
},
"size-limit": [
{
"name": "CommonJS",
"path": "lib/dist/index.cjs",
"limit": "6 KB"
},
{
"name": "ES Modules",
"path": "lib/dist/index.js",
"limit": "6 KB"
}
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"type-check": "turbo run type-check",
"dev": "turbo run dev",
"deploy:docs": "GIT_USER=fveracoechea SSH=true pnpm run --filter docs deploy",
"lint": "turbo run lint",
"size": "size-limit --json",
"prettier-check": "prettier '**/*.{js,ts,jsx,tsx,json,md,mdx}' --check",
"prettier-format": "prettier '**/*.{js,ts,jsx,tsx,json,md,mdx}' --write",
"release:build": "pnpm --filter fetchtastic build",
"release:check": "pnpm --filter fetchtastic type-check",
"release:publish": "changeset publish",
"release": "pnpm release:check && pnpm release:build && pnpm release:publish"
},
"volta": {
"node": "20.12.2",
"pnpm": "9.0.6"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@size-limit/preset-small-lib": "^11.1.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"prettier": "^3.2.5",
"size-limit": "^11.1.2",
"turbo": "^2.0.9",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=6"
},
"packageManager": "[email protected]"
}