forked from affaan-m/x-algorithm-score
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "x-score-extension",
"version": "0.1.0",
"description": "Chrome extension that scores tweets based on X's recommendation algorithm",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:clean": "rm -rf dist && npm run build",
"package": "npm run build:clean && cd dist && rm -rf .vite && zip -r ../x-algorithm-score.zip . -x '*.DS_Store'",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx",
"type-check": "tsc --noEmit"
},
"keywords": [
"chrome-extension",
"twitter",
"x",
"algorithm",
"scoring"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@crxjs/vite-plugin": "^2.3.0",
"@types/chrome": "^0.0.260",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}