-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1 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
{
"name": "cleanedin",
"version": "1.2.0",
"description": "Less clutter, more focus.",
"main": "background.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"sync": "node scripts/sync.js",
"build": "npm run sync && rm -rf CleanedIn && mkdir CleanedIn && cp -R src/* CleanedIn && zip -r CleanedIn-v$(node -p \"require('./package.json').version\").zip CleanedIn && rm -rf CleanedIn",
"push": "node scripts/push.js",
"release": "npm run build && npm publish",
"release-gh": "npm run release && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"version": "npm run sync && git add src/manifest.json",
"deploy": "npm version patch && git push origin main --follow-tags"
},
"files": [
"src/",
"LICENSE.txt",
"PRIVACY.md",
"README.md"
],
"keywords": [
"chrome-extension",
"linkedin",
"privacy",
"filter"
],
"author": "Stéphane Hamel",
"license": "SEE LICENSE IN LICENSE"
}