-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@thinknimble/tn-forms-react",
"version": "1.0.3",
"description": "React utils to use with @thinknimble/tn-forms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --dts",
"prepublish": "rm -rf dist && npm run build",
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinknimble/tn-forms-react.git"
},
"keywords": [
"tn-forms",
"thinknimble",
"tn-react"
],
"author": "Thinknimble",
"license": "ISC",
"bugs": {
"url": "https://github.com/thinknimble/tn-forms-react/issues"
},
"homepage": "https://github.com/thinknimble/tn-forms-react#readme",
"devDependencies": {
"@thinknimble/tn-forms": "^3.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@thinknimble/tn-forms": ">=3.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
}