-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.72 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@fancysofthq/supa-app",
"description": "Shared code for frontend Supa applications",
"author": {
"name": "Fancy Software",
"url": "http://fancysoft.eth"
},
"version": "0.3.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview"
},
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ipld/block": "^6.0.4",
"@ipld/car": "^5.0.1",
"@ipld/dag-cbor": "^8.0.0",
"@ipld/unixfs": "^2.0.0",
"@metamask/providers": "^10.2.1",
"@multiformats/sha3": "^2.0.13",
"@vueuse/core": "^9.6.0",
"axios": "^1.2.1",
"blockstore-core": "^2.0.2",
"buffer": "^6.0.3",
"dexie": "^3.2.2",
"ethers": "^5.7.2",
"jdenticon": "^3.2.0",
"multiformats": "^10.0.2",
"vue": "^3.2.41",
"web3-token": "^1.0.2"
},
"devDependencies": {
"@prettier/plugin-pug": "^2.3.0",
"@vitejs/plugin-vue": "^3.2.0",
"@volar/vue-language-plugin-pug": "^1.0.11",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"pug": "^3.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vue-tsc": "^1.0.9"
},
"browser": "./dist/supa-app.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"files": [
"dist",
"src"
],
"exports": {
"./components/*": "./src/components/*",
"./models/*": "./src/models/*",
"./services/*": "./src/services/*",
"./utils/*": "./src/utils/*"
}
}