-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "@thinknimble/tn-forms-react",
"version": "1.0.7",
"description": "React utils to use with @thinknimble/tn-forms",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build": "tsup index.ts --dts --format esm,cjs",
"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.3.3",
"@types/react": "^19.1.4",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@thinknimble/tn-forms": ">=3.3.3",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}