-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
59
60
61
62
{
"name": "@jagaad/vue-hubspot-form",
"version": "2.2.3",
"repository": {
"type": "git",
"url": "https://github.com/jagaad/vue-hubspot-form.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"types": "vue-tsc --declaration --emitDeclarationOnly src/hubspot-form.ts --declarationDir dist",
"prepublishOnly": "npm run build && npm run types",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "husky install"
},
"files": [
"dist"
],
"main": "./dist/hubspot-form.umd.js",
"module": "./dist/hubspot-form.es.js",
"types": "./dist/hubspot-form.d.ts",
"exports": {
".": {
"import": "./dist/hubspot-form.es.js",
"require": "./dist/hubspot-form.umd.js"
}
},
"peerDependencies": {
"@vue/composition-api": "^1.4.0"
},
"dependencies": {
"vue-demi": "^0.13.11"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@babel/types": "^7.20.2",
"@jagaad/prettier-config": "^1.1.1",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^3.2.0",
"husky": "^8.0.2",
"jss": "^10.9.2",
"lint-staged": "^13.0.3",
"np": "^7.6.2",
"prettier": "^2.7.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vue": "^3.2.23",
"vue-tsc": "^1.0.9"
},
"prettier": "@jagaad/prettier-config",
"lint-staged": {
"*.{ts,vue,json,html,md}": "npx prettier --write"
}
}