-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 805 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 805 Bytes
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
{
"private": true,
"name": "web3-elements",
"version": "0.0.0",
"description": "Primitive web UI elements for Web3 dApps",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf build",
"build": "tsc --build",
"build:check": "node -e \"require('./dist')\""
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/adiled/web3-elements"
},
"author": "Adil Shaikh <hello@adils.me> (http://www.adils.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adiled/web3-elements/issues"
},
"homepage": "https://github.com/adiled/web3-elements#readme",
"dependencies": {},
"devDependencies": {
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"workspaces": [
"packages/*"
]
}