-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 977 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 977 Bytes
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
{
"name": "react-tally",
"version": "0.0.9",
"description": "Inofficial wrapper Form Tally Forms to use easily with React",
"author": "Nikita 'donnikitos' Nitichevski <me@donnikitos.com> (https://nititech.de/)",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:nititech/react-tally.git"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.3",
"vite": "^6.3.4",
"vite-plugin-dts": "^4.5.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/nititech/react-tally",
"keywords": [
"react",
"react component",
"Tally",
"Tally Forms",
"Tally Form Builder",
"React Tally",
"Tally integration"
],
"license": "MIT",
"scripts": {
"build": "npx vite build",
"prepack": "npx vite build"
},
"type": "module",
"dependencies": {},
"peerDependencies": {
"react": ">=18"
}
}