-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 997 Bytes
/
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
{
"name": "formify-form",
"version": "0.1.1",
"description": "Add contact forms to any site just in a few steps",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsup --watch",
"build": "tsup"
},
"keywords": [
"Formify",
"React form",
"Static form"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Basharath/Formify-form.git"
},
"engines": {
"node": ">=10"
},
"private": false,
"author": "Basharath",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"tsup": "^6.2.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"styled-components": "^5.3.5"
},
"resolutions": {
"styled-components": "^5"
}
}