-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "formwright",
"private": false,
"version": "0.1.0",
"description": "Schema-driven form engine monorepo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adarshaacharya/formwright.git"
},
"homepage": "https://github.com/adarshaacharya/formwright#readme",
"bugs": {
"url": "https://github.com/adarshaacharya/formwright/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js",
"require": "./dist/core.cjs"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.js",
"require": "./dist/schema.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"require": "./dist/react.cjs"
},
"./plugins": {
"types": "./dist/plugins.d.ts",
"import": "./dist/plugins.js",
"require": "./dist/plugins.cjs"
},
"./remote": {
"types": "./dist/remote.d.ts",
"import": "./dist/remote.js",
"require": "./dist/remote.cjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22.14.0"
},
"packageManager": "pnpm@10.0.0",
"scripts": {
"build": "pnpm run build:internal && tsup",
"build:internal": "turbo run build --filter='./packages/*'",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"release": "semantic-release",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"docs:dev": "pnpm --filter apps-docs dev",
"docs:build": "pnpm --filter apps-docs build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"react-hook-form": "^7.53.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"semantic-release": "^25.0.3",
"tsup": "^8.5.0",
"turbo": "^2.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
}