-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.95 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.95 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
97
98
99
100
101
102
103
104
{
"name": "strapi-plugin-form-builder-cms",
"version": "1.0.0-alpha.3",
"description": "Visual drag-and-drop form builder plugin for Strapi 5. Create, publish and embed forms on any website.",
"keywords": [
"strapi",
"strapi-plugin",
"strapi5",
"strapi-v5",
"form-builder",
"form-builder-plugin",
"forms",
"drag-and-drop",
"drag-drop-form",
"cms",
"headless-cms",
"form-embed",
"contact-form",
"lead-form",
"no-code",
"visual-builder",
"submissions",
"embed"
],
"license": "MIT",
"author": "dev.cluna <dev.cluna@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/devCluna/strapi-plugin-form-builder-cms.git"
},
"bugs": {
"url": "https://github.com/devCluna/strapi-plugin-form-builder-cms/issues"
},
"homepage": "https://github.com/devCluna/strapi-plugin-form-builder-cms#readme",
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "npx tsc -p admin/tsconfig.json --noEmit",
"test:ts:back": "npx tsc -p server/tsconfig.json --noEmit"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@strapi/design-system": "^2.0.0-rc.30",
"@strapi/icons": "^2.0.0-rc.30",
"@strapi/sdk-plugin": "^6.0.1",
"@strapi/strapi": "^5.40.0",
"@strapi/typescript-utils": "^5.40.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.8.9",
"react-router-dom": "^6.30.3",
"styled-components": "^6.3.12",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@strapi/design-system": "^2.0.0-rc.30",
"@strapi/icons": "^2.0.0-rc.30",
"@strapi/sdk-plugin": "^6.0.1",
"@strapi/strapi": "^5.40.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^6.8.9",
"react-router-dom": "^6.30.3",
"styled-components": "^6.3.12"
},
"strapi": {
"kind": "plugin",
"name": "strapi-plugin-form-builder-cms",
"displayName": "Form Builder CMS",
"description": "Visual drag-and-drop form builder plugin for Strapi 5"
}
}