-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 967 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 967 Bytes
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
{
"name": "@formsdk/sdk",
"version": "1.0.1",
"description": "Zero-lock-in, framework-agnostic Form SDK - useForm hook + handleRequest for any framework",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @formsdk/core && npm run build -w @formsdk/react && npm run build -w @formsdk/svelte && npm run build -w @formsdk/astro",
"pub": "npm run build && npm publish --workspaces --access public",
"lint": "biome check .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"enquirer": "^2.4.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "arjunaditya",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/formsdk/formsdk"
},
"bugs": {
"url": "https://github.com/formsdk/formsdk/issues"
},
"homepage": "https://github.com/formsdk/formsdk#readme"
}