-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.55 KB
/
package.json
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
{
"name": "BetterSnap - Make Snapchat Web Better",
"version": "1.3.4",
"description": "Screenshot & View Unread Chats, Send as Mobile, and more! Previously known as Better Snapchat.",
"scripts": {
"start": "rm -rf ./public/build/ && node ./scripts/dev.js",
"build": "npm run build:chrome",
"build:chrome": "rm -rf ./public/build/ && node ./scripts/chrome.js",
"build:firefox": "rm -rf ./public/build/ && node ./scripts/firefox.js",
"build:userscript": "rm -rf ./public/build/ && node ./scripts/userscript.js",
"package": "npm run package:chrome",
"package:chrome": "rm -rf ./public/build/ && npm run build:chrome && cd ./public && zip -D -r ../better-snapchat-chrome.zip . && cd ..",
"package:firefox": "rm -rf ./public/build/ && npm run build:firefox && cd ./public && zip -D -r ../better-snapchat-firefox.zip . && cd ..",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" && prettier --check \"src/**/*.{ts,tsx}\"",
"manifest-lint": "addons-linter public/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dclstn/better-snapchat.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/dclstn/better-snapchat/issues"
},
"homepage": "https://github.com/dclstn/better-snapchat#readme",
"dependencies": {
"@mantine/core": "7.8.0",
"@mantine/hooks": "^7.6.2",
"@tabler/icons-react": "^3.19.0",
"cookies-js": "^1.2.3",
"eventemitter3": "^5.0.1",
"fast-deep-equal": "^3.1.3",
"fuse.js": "^7.0.0",
"lodash.throttle": "^4.1.1",
"preact": "^10.25.0",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat"
},
"devDependencies": {
"@types/chrome": "^0.0.280",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/ua-parser-js": "^0.7.39",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"addons-linter": "^7.3.0",
"chokidar": "^3.6.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"esbuild-css-modules-plugin": "^3.1.2",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-import-glob": "^0.1.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ws": "^8.18.0"
}
}