-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "hubspot-submissions-api",
"description": "A Custom React Typescript hooks for interacting with Hubspot Submissions API",
"version": "1.0.4",
"main": "index.js",
"module": "./dist/esm/components/index.js",
"types": "./dist/esm/components/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/topfullstackdev/hubspot-submissions-api.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"typescript",
"react typescript",
"react-hook",
"submissions",
"form",
"hubspot",
"hubspot-api",
"hubspot-form",
"hubspot-submissions"
],
"author": "Jouji Yoshino",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.25",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
}
}