-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.4 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
{
"name": "vue-evm-nft",
"version": "1.3.0",
"main": "src/index.js",
"types": "src/types/index.d.ts",
"scripts": {
"test": "ava"
},
"keywords": [
"vue",
"web3",
"nft",
"ethereum",
"evm",
"ethers",
"blockchain",
"pinia",
"vue3",
"composable"
],
"author": "Kid Sysco",
"license": "ISC",
"description": "Vue 3 components, Pinia stores, and utilities for working with NFTs directly on EVM-compatible blockchains. No API is needed, the blockchain is the API.",
"repository": {
"type": "git",
"url": "https://github.com/Dig-A-Hash/vue-evm-nft"
},
"bugs": {
"url": "https://github.com/Dig-A-Hash/vue-evm-nft/issues"
},
"homepage": "https://github.com/Dig-A-Hash/vue-evm-nft",
"peerDependencies": {
"axios": "^1.0.0",
"ethers": "^6.0.0",
"pinia": "^2.0.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@pinia/testing": "^0.1.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/test-utils": "^2.4.6",
"ava": "^6.1.3",
"axios": "^1.7.7",
"esbuild-register": "^3.6.0",
"ethers": "^6.13.3",
"jsdom": "^25.0.1",
"pinia": "^2.2.4",
"typescript": "^5.7.2",
"vue": "^3.5.13"
},
"ava": {
"extensions": {
"js": true
},
"require": [
"esbuild-register",
"./test-setup.js"
],
"files": [
"tests/**/*.test.js"
]
},
"dependencies": {
"vue-tsc": "^2.1.10"
}
}