-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.53 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@aminhanifm/issuesafe",
"version": "0.1.1",
"description": "Sanitize developer logs and create shareable bug reports without uploading anything.",
"type": "module",
"license": "MIT",
"author": "Amin Hanif",
"repository": {
"type": "git",
"url": "git+https://github.com/aminhanifm/IssueSafe.git"
},
"homepage": "https://aminhanifm.github.io/projects/IssueSafe/",
"bugs": {
"url": "https://github.com/aminhanifm/IssueSafe/issues"
},
"keywords": [
"privacy",
"log-redaction",
"developer-tools",
"cli",
"typescript",
"security",
"debugging"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"bin": {
"issuesafe": "dist/cli/bin.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md"
],
"scripts": {
"dev": "vite --config demo/vite.config.ts",
"build": "tsup",
"build:demo": "vite build --config demo/vite.config.ts",
"preview": "vite preview --config demo/vite.config.ts",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit && tsc --noEmit -p demo/tsconfig.json && tsc --noEmit -p e2e/tsconfig.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"pack:dry-run": "npm pack --dry-run",
"verify:package": "node scripts/verify-package.mjs",
"check": "npm run format && npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run build:demo && npm run verify:package"
},
"dependencies": {
"commander": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.13",
"vitest": "^4.0.18"
}
}