-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 943 Bytes
/
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
{
"name": "route2cidr",
"version": "0.1.0",
"description": "Router to CIDR Converter",
"packageManager": "npm@10.7.0",
"author": "ittuann <ittuann@outlook.com>",
"license": "AGPL-3.0",
"homepage": "https://ittuann.github.io/Route2CIDR/",
"repository": {
"url": "https://github.com/ittuann/Route2CIDR",
"type": "git"
},
"private": true,
"keywords": [
"CIDR",
"SSTap",
"Clash"
],
"main": "./src/index.js",
"scripts": {
"build": "npx webpack",
"lint": "npx eslint ./src/",
"lint:fix": "npx eslint --fix ./src/",
"format": "npx prettier --write '**/*.{js,mjs,ts,css,scss,json,mjs,jsx,md}'",
"format:check": "npx prettier --check ."
},
"dependencies": {
"buffer": "^6.0.3",
"ip": "^2.0.1"
},
"devDependencies": {
"eslint": "^9.12.0",
"prettier": "^3.4.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}