-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.68 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
{
"name": "sentinel",
"version": "0.1.1",
"private": true,
"type": "module",
"engines": {
"node": "24.x",
"npm": ">=12 <13"
},
"packageManager": "npm@12.0.2",
"bin": {
"sentinel": "./dist/index.js"
},
"scripts": {
"build": "npm run build:cli && npm run build:web",
"build:cli": "node node_modules/@typescript/native/bin/tsc -p tsconfig.cli.json && chmod +x dist/index.js",
"build:web": "vite build",
"dev": "vite",
"dev:cli": "tsx src/index.ts",
"sentinel": "tsx src/index.ts",
"test": "vitest run test",
"test:coverage": "vitest run test --coverage",
"doctor": "react-doctor --scope full --blocking warning .",
"check": "npm run doctor && node node_modules/@typescript/native/bin/tsc -p tsconfig.json --noEmit && npm run build && npm test"
},
"dependencies": {
"@vercel/blob": "^2.8.0",
"@vercel/functions": "^3.9.5",
"cheerio": "^1.2.0",
"commander": "^15.0.0",
"fast-xml-parser": "^5.11.0",
"nodemailer": "^9.0.5",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"robots-parser": "^3.0.1",
"undici": "^8.10.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^24.13.3",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.0",
"@vitest/coverage-v8": "^4.1.11",
"react-doctor": "0.9.12",
"tsx": "^4.23.12",
"@typescript/native": "npm:typescript@7.0.2",
"typescript": "npm:@typescript/typescript6@6.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"overrides": {
"encoding-sniffer": "1.0.2"
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents": false
}
}