-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.57 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.57 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
58
59
60
61
62
63
64
65
{
"name": "@cldn/ip",
"version": "0.0.0-dev",
"description": "A modern, object-oriented TypeScript library for representing and performing arithmetic on IP addresses and subnets.",
"homepage": "https://ip.cldn.pro",
"author": "Cloudnode",
"license": "LGPL-3.0",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/**.js",
"dist/**.d.ts"
],
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"docs:gen": "typedoc && rm -rf docs/api && mv api docs/api",
"predocs:dev": "npm run docs:gen",
"docs:dev": "vitepress dev docs",
"predocs:build": "npm run docs:gen",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudnode-pro/ip.git"
},
"bugs": {
"url": "https://github.com/cloudnode-pro/ip/issues"
},
"keywords": [
"network",
"ip",
"ipv4",
"ipv6",
"subnet",
"cidr",
"netmask",
"subnet-mask",
"cidr-range",
"cidr-ranges",
"cidr-subnet",
"cidr-list",
"cidr-calculator",
"subnet-calculator",
"ipcalc",
"ip-calc",
"ip-calculator",
"ip-address",
"net",
"library"
],
"devDependencies": {
"@vitest/coverage-v8": "^4.0.6",
"@vitest/ui": "^4.0.6",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.7.1",
"typedoc-plugin-mdn-links": "^5.0.1",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.6.3",
"vitepress": "^1.6.3",
"vitepress-plugin-auto-sidebar": "^1.3.5",
"vitest": "^4.0.6"
}
}