-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"type": "module",
"name": "suisecblocklist",
"version": "1.0.11",
"description": "Fetch and execute lookups on Suiet Guardians blocklists",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsup src/index.ts --format cjs,esm --dts --clean --env.NODE_ENV production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuiSec/SuiSecBlockList"
},
"homepage": "https://github.com/SuiSec/SuiSecBlockList#readme",
"keywords": [],
"author": "SuiSec team",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.12",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"cross-fetch": "^4.0.0"
}
}