-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
package.json
File metadata and controls
57 lines (57 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
{
"name": "timelock-explorer",
"private": true,
"version": "0.1.1",
"main": "./dist/timelock-explorer.umd.js",
"module": "./dist/timelock-explorer.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/timelock-explorer.mjs",
"require": "./dist/timelock-explorer.umd.js"
},
"./postcss.config.cjs": "./postcss.config.cjs"
},
"scripts": {
"dev": "vite -c vite.timelock-explorer.config.ts --host",
"build": "npm run build:lib && npm run build:app",
"build:lib": "vite build && vue-tsc --emitDeclarationOnly",
"build:app": "vite build -c vite.timelock-explorer.config.ts",
"preview": "vite preview -c vite.timelock-explorer.config.ts"
},
"dependencies": {
"@headlessui/vue": "^1.7.7",
"@metaplex-foundation/beet": "^0.1.0",
"@metaplex-foundation/beet-solana": "^0.1.1",
"@noble/ed25519": "^1.7.1",
"@noble/hashes": "^1.1.4",
"@solana/wallet-adapter-base": "^0.9.18",
"@solana/wallet-adapter-wallets": "^0.19.11",
"@vueuse/core": "^9.3.0",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"buffer": "^5.5.0",
"rimraf": "^4.1.2",
"solana-wallets-vue": "^0.6.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "18.8.0",
"@types/node-fetch": "^2.6.2",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"crypto-browserify": "^3.12.0",
"postcss": "^8.4.21",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.1.1",
"vue-tsc": "^1.0.11"
},
"peerDependencies": {
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.66.0",
"vue": "^3.2.45"
}
}