-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.05 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
{
"name": "noads",
"version": "1.0.0",
"description": "A simple ad blocker that removes specific DOM elements using CSS selectors",
"main": "dist/main.js",
"scripts": {
"build": "node scripts/build.mjs",
"build:ts": "node scripts/build-ts.mjs",
"copy:popup-html": "node scripts/sync-popup-html.mjs",
"typecheck": "tsc --noEmit",
"watch:ts": "node scripts/build-ts.mjs --watch",
"scss": "sass --style=compressed --no-source-map src/styles.scss:dist/styles.css",
"watch:scss": "sass --style=compressed --no-source-map --watch src/styles.scss:dist/styles.css",
"watch:popup-html": "node scripts/sync-popup-html.mjs --watch",
"dev": "concurrently \"npm run watch:ts\" \"npm run watch:scss\" \"npm run watch:popup-html\""
},
"keywords": [
"chrome-extension",
"typescript"
],
"author": "Bing-Yang Chen",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.237",
"archiver": "^7.0.1",
"concurrently": "^8.2.0",
"esbuild": "^0.28.0",
"sass": "^1.79.4",
"typescript": "^5.0.4"
}
}