-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.35 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
{
"name": "vevm",
"version": "0.2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "A set of Vue composable functions for wagmi.",
"repository": {
"type": "git",
"url": "https://github.com/carrot-kpi/vevm.git"
},
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/carrot-kpi/vevm"
},
"files": [
"./dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-p type-check \"build-only {@}\" && vue-tsc --build --force tsconfig.lib.json",
"test": "vitest run",
"test:watch": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint --ext .tsx,.ts,.js,.vue ./ && prettier --check './**/*.{json,md}'",
"format": "eslint --fix --ext .tsx,.ts,.js,.vue ./ && prettier --write './**/*.{json,md}'",
"size-limit": "size-limit",
"commitlint": "commitlint -e",
"prepare": "husky install"
},
"dependencies": {
"viem": "^2.7.15"
},
"peerDependencies": {
"@wagmi/core": "^2.6.4",
"vue": "^3.4.15"
},
"devDependencies": {
"@commitlint/cli": "^19.0.2",
"@commitlint/config-conventional": "^19.0.0",
"@size-limit/file": "^11.0.2",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"@wagmi/connectors": "^4.1.14",
"@wagmi/core": "^2.6.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.12.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.22.0",
"happy-dom": "^13.6.2",
"husky": "^9.0.11",
"npm-run-all2": "^6.1.1",
"pinia": "^2.1.7",
"prettier": "^3.2.5",
"size-limit": "^11.0.2",
"turbo": "^1.12.4",
"typescript": "~5.3.0",
"vite": "^5.1.4",
"vitest": "^1.3.1",
"vue": "^3.4.20",
"vue-tsc": "^1.8.27"
}
}