-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "nft-guard",
"version": "0.1.3",
"description": "Prevent downloads of your NFTs with this handy component.",
"source": "src/nft-guard.ts",
"main": "dist/nft-guard.min.js",
"browser": "dist/nft-guard.min.js",
"types": "dist/types.d.ts",
"targets": {
"main": false
},
"scripts": {
"start": "parcel watch",
"build": "parcel build",
"prepublish": "npm run build",
"pretest": "tsc --noEmit",
"test": "eslint src/nft-guard.ts"
},
"keywords": [
"nft",
"web3",
"security"
],
"repository": {
"type": "git",
"url": "https://github.com/herschel666/nft-guard.git"
},
"bugs": {
"url": "https://github.com/herschel666/nft-guard/issues"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"author": "Emanuel Kluge (https://emanuel-kluge.de/)",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "2.0.0",
"@parcel/transformer-typescript-types": "2.0.0",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"parcel": "2.0.0",
"prettier": "2.4.1",
"typescript": "4.4.4"
}
}