-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "epoch",
"version": "1.0.0",
"private": true,
"description": "Epoch Flow — headless multi-step form orchestration for React + tRPC + Zod",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"dev": "turbo run dev",
"clean": "turbo run clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:api": "typedoc"
},
"keywords": [
"react",
"form",
"multi-step",
"wizard",
"trpc",
"zod",
"headless",
"typescript"
],
"author": "Epoch Flow Contributors",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.8.3",
"turbo": "^2.0.0",
"typedoc": "^0.28.19",
"typescript": "^5.4.0",
"typescript-eslint": "^8.59.1",
"vitepress": "^1.6.4"
}
}