-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "@inbrowserapp/network-tools",
"version": "1.0.0",
"description": "Image utils for canvas, image, and image processing.",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"!**/__tests__/**/*",
"!**/*.test.ts",
"!**/*.spec.ts"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint --fix .",
"lint-check": "eslint . --no-fix",
"format": "prettier --write src",
"format-check": "prettier --check src",
"type-check": "tsc --noEmit",
"prepare": "husky",
"test": "vitest",
"test:browser": "vitest --config=vitest.browser.config.ts"
},
"packageManager": "pnpm@10.12.3+sha512.467df2c586056165580ad6dfb54ceaad94c5a30f80893ebdec5a44c5aa73c205ae4a5bb9d5ed6bb84ea7c249ece786642bbb49d06a307df218d03da41c317417",
"keywords": [],
"author": "inbrowserapp",
"copyright": "inbrowserapp",
"repository": "https://github.com/inbrowserapp/network-tools",
"homepage": "https://github.com/inbrowserapp/network-tools",
"bugs": {
"url": "https://github.com/inbrowserapp/network-tools/issues"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.2",
"@vitest/browser": "^3.2.4",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vite": "^7.2.7",
"vitest": "^3.2.4"
},
"dependencies": {
"cidr-tools": "^11.0.3",
"is-ip": "^5.0.1"
}
}