-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "reddit-post-notifier",
"type": "module",
"version": "6.3.1",
"packageManager": "[email protected]",
"description": "Browser extension that watches for posts in given subreddits or reddit searches",
"author": "Vitaly Yerofeyevsky",
"license": "MPL-2.0",
"homepage": "https://github.com/flytaly/reddit-post-notifier#readme",
"repository": {
"type": "git",
"url": "https://github.com/flytaly/reddit-post-notifier.git"
},
"main": "manifest.json",
"scripts": {
"webext:chrome": "web-ext run --source-dir extension --target chromium",
"webext:ff": "web-ext run --source-dir extension",
"dev:chrome": "cross-env NODE_ENV=development TARGET=chrome run-p d:* webext:chrome",
"dev:ff": "cross-env NODE_ENV=development TARGET=firefox run-p d:* webext:ff",
"d:prepare": "esno scripts/prepare.ts dev",
"d:web": "vite",
"d:js": "npm run b:js -- --mode development",
"build:chrome": "cross-env TARGET=chrome run-s clear b:web b:prepare b:js",
"build:ff": "cross-env TARGET=firefox run-s clear b:web b:prepare b:js",
"b:prepare": "esno scripts/prepare.ts build",
"b:web": "vite build",
"b:js": "vite build --config vite.config.bg.ts",
"zip": "web-ext build --source-dir extension",
"clear": "rimraf extension/dist",
"lint": "eslint \"./src/**/*.{ts,svelte}\"",
"lint:fix": "npm run lint -- --fix",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"validate": "svelte-check"
},
"dependencies": {
"@withshepherd/faker": "^5.5.5",
"lodash.clonedeep": "^4.5.0",
"nprogress": "^0.2.0",
"postcss-load-config": "^6.0.1",
"tailwindcss": "^3.4.10",
"tippy.js": "^6.3.7",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/svelte": "^5.2.1",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.0.270",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.1",
"@types/nprogress": "^0.2.3",
"@types/webextension-polyfill": "^0.12.1",
"@vitest/coverage-v8": "^2.0.5",
"autoprefixer": "^10.4.20",
"chokidar": "^3.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"esno": "^4.7.0",
"fs-extra": "^11.2.0",
"jsdom": "^25.0.0",
"kolorist": "^1.8.0",
"mockzilla": "^0.14.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.42",
"postcss-import": "^16.1.0",
"rimraf": "^6.0.1",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"terser": "^5.31.6",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-svelte-plugin": "^0.3.40",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"vitest-dom": "^0.1.1",
"web-ext": "^8.2.0",
"web-ext-types": "^3.2.1"
}
}