-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.86 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
{
"name": "tulipe",
"version": "1.0.0",
"private": false,
"description": "A DApp frontend framework for Vue3 built with Ethers.js 🌷",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LilaRest/tulipe.git"
},
"author": {
"name": "LilaRest",
"email": "mail@lila.cr"
},
"bugs": "https://github.com/LilaRest/tulipe/issues",
"files": [
"dist"
],
"main": "./dist/tulipe.umd.js",
"module": "./dist/tulipe.es.js",
"unpkg": "./dist/tulipe.min.js",
"jsdelivr": "./dist/tulipe.min.js",
"exports": {
".": {
"require": "./dist/tulipe.umd.js",
"import": "./dist/tulipe.es.js"
},
"./package.json": "./package.json"
},
"keywords": [
"dapp",
"frontend",
"vue",
"vue3",
"vuejs",
"vuejs",
"web3",
"ethersjs",
"ethers",
"unstyled-components",
"ethereum"
],
"scripts": {
"dev": "npx vite",
"build": "npx vite build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"semantic-release": "semantic-release"
},
"dependencies": {
"ethers": "^5.7.0",
"vue": "^3.2.38"
},
"peerDependencies": {
"@coinbase/wallet-sdk": "^3.5.1",
"@walletconnect/web3-provider": "^1.8.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@openzeppelin/contracts": "^4.7.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@vitejs/plugin-vue": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"hardhat": "^2.10.2",
"hardhat-deploy": "^0.11.12",
"semantic-release": "^19.0.5",
"tulipe": "^1.3.1",
"vite": "^3.0.4",
"vitepress": "^1.0.0-alpha.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}