-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
105 lines (105 loc) · 2.82 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
{
"name": "@townsquarelabs/ui-vue",
"private": false,
"version": "2.0.11-beta.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npx vue-demi-switch 3 && vite build",
"build:lib": "yarn build:lib:3 && yarn build:lib:2.7",
"build:lib:2.7": "npx vue-demi-switch 2 && vite build",
"build:lib:3": "npx vue-demi-switch 3 && vite build",
"preview": "vite preview",
"lint-fix": "eslint --fix --ext .ts,.vue src",
"lint": "eslint",
"prepare": "husky",
"security-audit": "npm audit && npm outdated",
"release": "standard-version"
},
"publishConfig": {
"access": "public"
},
"description": "TonConnect UI Vue is a Vue UI kit for TonConnect SDK. Use it to connect your app to TON wallets via TonConnect protocol in Vue apps.",
"repository": {
"type": "git",
"url": "git+https://github.com/TownSquareXYZ/tonconnect-ui-vue.git"
},
"keywords": [
"ton",
"townsquarexyz",
"TON",
"Wallet",
"ton-connect",
"tonconnect",
"Connect",
"Tonkeeper",
"sdk",
"UI",
"Vue"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TownSquareXYZ/tonconnect-ui-vue/issues"
},
"homepage": "https://github.com/TownSquareXYZ/tonconnect-ui-vue#readme",
"files": [
"lib",
"scripts"
],
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"default": "./lib/index.cjs"
}
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.7.0 || >=3.0.0",
"vue-demi": "^0.14.8"
},
"dependencies": {
"@tonconnect/ui": "2.0.10-beta.0"
},
"devDependencies": {
"@types/node": "^18.19.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-legacy": "^5.2.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue-macros/volar": "^0.18.16",
"@vue/composition-api": "^1.7.2",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.20.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "^4.9.5",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-define-options": "^1.5.1",
"vite": "^5.0.11",
"vite-plugin-dts": "^4.2.1",
"vitest": "latest",
"vue": "^2.7.16",
"vue-demi": "^0.14.10",
"vue-eslint-parser": "^9.4.0",
"vue-tsc": "^0.39.5"
},
"lint-staged": {
"*.{vue,ts,tsx}": [
"eslint --ext .ts,.vue src",
"prettier --write"
]
}
}