-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 KB
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
{
"name": "@interchain-kit/vue",
"version": "0.0.1-beta.1",
"author": "cosmology-tech <developers@cosmology.zone>",
"description": "interchain-kit wallet connector vue package",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"homepage": "https://github.com/interchain-kit/vue",
"license": "SEE LICENSE IN LICENSE",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/interchain-kit/vue"
},
"bugs": {
"url": "https://github.com/interchain-kit/vue/issues"
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"clean": "rimraf dist/**",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"lint": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"dev": "vite"
},
"keywords": [],
"dependencies": {
"@chain-registry/v2-types": "^0.49.6",
"@interchain-kit/core": "0.0.1-beta.26",
"@interchain-ui/vue": "1.24.0",
"@interchainjs/cosmos-types": "0.0.1-beta.9",
"@interchainjs/injective": "0.0.1-beta.13",
"interchainjs": "0.0.1-beta.14",
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.1",
"vue-tsc": "^1.8.5"
}
}