-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 KB
/
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
49
50
51
52
53
54
55
56
57
58
{
"name": "formoso",
"version": "0.0.1",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"deploy": "gh-pages -d gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonnsl/formoso.git"
},
"keywords": [
"react",
"input",
"ui",
"form",
"formbuilder"
],
"files": [
"/dist"
],
"author": "Jonnathan Soares Lima",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonnsl/formoso/issues"
},
"homepage": "https://github.com/jonnsl/formoso#readme",
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"esbuild": "^0.23.1",
"gh-pages": "^6.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-modal": "^3.16.3",
"@types/uuid": "^10.0.0",
"bootstrap-icons": "^1.11.3",
"classnames": "^2.5.1",
"react-beautiful-dnd": "^13.1.1",
"react-modal": "^3.16.1",
"react-textarea-autosize": "^8.5.3",
"uuid": "^10.0.0"
}
}