-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@whitelabel-solutions/wallet-connector-vue",
"version": "0.0.8-development",
"packageManager": "[email protected]",
"description": "Headless Blockchain Wallet Connector UI components for Vue 2 & 3",
"keywords": [
"blockchain",
"crypto",
"vue",
"wallet"
],
"homepage": "https://github.com/whitelabel-market",
"bugs": {
"url": "https://github.com/whitelabel-market/wallet-connector-vue/issues"
},
"license": "MIT",
"author": "Whitelabel Solutions <https://github.com/whitelabel-market>",
"repository": {
"type": "git",
"url": "https://github.com/whitelabel-market/wallet-connector-vue.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.iife.min.js",
"jsdelivr": "./dist/index.iife.min.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"sideEffects": false,
"scripts": {
"build": "esno scripts/build.ts",
"build:rollup": "cross-env NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build:watch": "nr build --watch",
"clean": "rimraf dist types",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"playground": "esno scripts/build.ts --watch",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"publish:npm": "esno scripts/publish.ts",
"semantic-release": "semantic-release",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^8.5.0",
"@whitelabel-solutions/wallet-connector": "^1.0.6",
"vue-demi": "^0.12.5"
},
"devDependencies": {
"@antfu/ni": "^0.14.0",
"@babel/core": "^7.17.10",
"@babel/types": "^7.17.0",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.29",
"@vue/eslint-config-typescript": "^10.0.0",
"commitizen": "^4.2.4",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.14.38",
"esbuild-register": "^3.3.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.0.1",
"esno": "^0.14.1",
"husky": "^7.0.4",
"pnpm": "^7.0.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.72.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^19.0.2",
"typescript": "^4.6.3",
"vite": "^2.9.6",
"vitest": "^0.10.0",
"vue": "^3.2.31",
"vue2": "npm:vue@^2.6.14"
},
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.6.0 || ^3.2.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"neverBuiltDependencies": [
"electron"
],
"overrides": {
"vue-demi": "0.12.5"
}
}
}