-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.94 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
{
"name": "ChatTweak",
"version": "1.6.3",
"description": "Your personal helper to make Web messaging a more fun and feature rich place, without compromising on privacy!",
"scripts": {
"start": "shx rm -rf ./public/build/ && node ./scripts/dev.js",
"manifest-lint": "addons-linter public/",
"lint": "eslint --ignore-pattern \"src/**/*.{ts,tsx}\" && prettier --check \"src/**/*.{ts,tsx}\"",
"lint:fix": "prettier --write \"src/**/*.{ts,tsx}\"",
"build": "npm run build:all",
"build:all": "npm run build:chrome && npm run build:firefox && npm run build:userscript",
"build:chrome": "shx rm -rf ./public/build/ && node ./scripts/chrome.js",
"build:firefox": "shx rm -rf ./public/build/ && node ./scripts/firefox.js",
"build:userscript": "shx rm -rf ./public/build/ && shx rm -rf ./dist/ChatTweak.user.js && shx mkdir -p dist && node ./scripts/userscript.js",
"package": "npm run package:all",
"package:all": "npm run package:chrome && npm run package:firefox",
"package:chrome": "shx rm -rf ./dist/ChatTweak-chrome.zip && shx mkdir -p dist && npm run build:chrome && node ./scripts/package-chrome.js",
"package:firefox": "shx rm -rf ./dist/ChatTweak-firefox.zip && shx mkdir -p dist && npm run build:firefox && node ./scripts/package-firefox.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixtapejaxson/SnapTweak.git"
},
"author": "Jaxson Waayers & appelmoesGG",
"license": "GPL",
"bugs": {
"url": "https://github.com/mixtapejaxson/ChatTweak/issues"
},
"homepage": "https://github.com/mixtapejaxson/ChatTweak#readme",
"dependencies": {
"@mantine/core": "^8.3.9",
"@mantine/hooks": "^8.0.1",
"@tabler/icons-react": "^3.33.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.26.9",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/chrome": "^0.1.9",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/ua-parser-js": "^0.7.39",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"addons-linter": "^7.15.0",
"chokidar": "^4.0.3",
"dotenv": "^17.2.2",
"esbuild": "^0.25.5",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-import-glob": "^0.1.1",
"esbuild-sass-plugin": "^3.3.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^16.2.0",
"lightningcss": "^1.30.2",
"nodemon": "^3.1.10",
"prettier": "^3.3.3",
"reconnecting-websocket": "^4.4.0",
"shx": "^0.4.0",
"ws": "^8.18.2"
}
}