-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 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
49
50
{
"name": "@interchain-kit/vue",
"version": "0.9.0",
"author": "Constructive <developers@constructive.io>",
"description": "interchain-kit for vue",
"main": "index.umd.js",
"module": "index.es.js",
"types": "index.d.ts",
"homepage": "https://github.com/interchain-kit/vue",
"license": "MIT",
"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 && copyfiles -f ../../LICENSE README.md package.json dist",
"watch:dev": "tsc -w -p tsconfig.esm.json & tsc -w"
},
"keywords": [],
"dependencies": {
"@chain-registry/types": "^2.0.1",
"@interchain-kit/core": "workspace:*",
"@interchain-ui/vue": "^1.4.1",
"@interchainjs/cosmos": "1.21.0",
"@interchainjs/cosmos-types": "1.21.0",
"@interchainjs/types": "1.21.0",
"@types/node": "^22.7.5",
"@vue/compiler-sfc": "^3.5.12",
"interchainjs": "1.21.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"typescript": "^5.6.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.2.4",
"vue-tsc": "^2.1.6"
},
"peerDependencies": {
"vue": ">=3.0.0"
}
}