-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.89 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
92
93
94
95
96
97
98
99
100
{
"name": "tools",
"version": "0.1.0",
"private": false,
"description": "AI-powered tool helping survivors request the removal of non-consensual images",
"repository": {
"type": "git",
"url": "git+https://github.com/chaynHQ/tools.git"
},
"keywords": [
"image-takedown",
"content-removal",
"privacy",
"ai",
"survivor-support"
],
"author": "Chayn CIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaynHQ/tools/issues"
},
"homepage": "https://github.com/chaynHQ/tools#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"cypress": "cypress open",
"cypress:headless": "cypress run --browser electron --config video=false",
"policy-validation": "npx tsx scripts/policy-validation.ts",
"policy-validation:force-rewrite": "npx tsx scripts/policy-validation.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.110.0",
"@babel/runtime": "^8.0.0",
"@next/swc-wasm-nodejs": "^16.2.10",
"@next/third-parties": "^16.2.10",
"@octokit/rest": "^22.0.1",
"@radix-ui/react-alert-dialog": "^1.1.18",
"@radix-ui/react-checkbox": "^1.3.6",
"@radix-ui/react-collapsible": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.18",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-radio-group": "^1.4.2",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-toast": "^1.2.18",
"@rollbar/react": "^1.0.0",
"@slack/webhook": "^7.1.0",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"encoding": "^0.1.13",
"eslint-config-next": "^16.2.10",
"framer-motion": "^12.42.2",
"lucide-react": "^1.23.0",
"next": "^16.2.10",
"postcss": "^8.5.16",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"react-speech-recognition": "^4.0.1",
"regenerator-runtime": "^0.14.1",
"rollbar": "^3.1.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^6.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/react-speech-recognition": "^3.9.6",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"cypress": "^15.18.0",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
}
}