-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "reactive-forms",
"description": "Complex forms with React? Easy!",
"version": "0.5.7",
"private": true,
"repository": "fracht/reactive-forms.git",
"author": "Artiom Tretjakovas",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build --filter=@reactive-forms/*",
"bump": "changeset version && pnpm i --lockfile-only",
"format": "syncpack format && prettier --write \"**/*.{ts,tsx,js,jsx,json,yml,yaml,clean-publish}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,yml,yaml,clean-publish}\"",
"lint": "eslint .",
"publish:check": "turbo run build lint test --filter=...@reactive-forms/*...",
"release": "pnpm build && changeset tag && pnpm publish -r --provenance",
"size": "npm run build && size-limit",
"size:analyze": "size-limit --why",
"test": "turbo run test --filter=@reactive-forms/*",
"turbo": "turbo"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@octokit/core": "6.1.2",
"@reactive-tools/eslint-config": "workspace:*",
"@size-limit/preset-small-lib": "11.1.6",
"aqu": "0.4.3",
"clean-publish": "5.1.0",
"danger": "12.3.3",
"eslint": "^9.13.0",
"prettier": "3.3.3",
"size-limit": "11.1.6",
"syncpack": "13.0.0",
"turbo": "2.2.3",
"typescript": "5.6.3"
},
"size-limit": [
{
"path": "packages/core/dist/index.js",
"limit": "30 KB"
},
{
"path": "packages/core/dist/index.mjs",
"limit": "30 KB"
}
]
}