-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
89 lines (89 loc) · 2.5 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
86
87
88
89
{
"name": "linkify-plus-plus",
"description": "Based on Linkify Plus. Turn plain text URLs into links.",
"version": "11.0.0",
"repository": "eight04/linkify-plus-plus",
"license": "BSD-3-Clause",
"author": "eight04 <[email protected]>",
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"dataurl": "^0.1.0",
"eslint": "^8.56.0",
"rollup": "^4.11.0",
"rollup-plugin-cjs-es": "^3.0.0",
"rollup-plugin-copy-glob": "^0.3.2",
"rollup-plugin-iife": "^0.7.1",
"rollup-plugin-write-output": "^0.2.1",
"shx": "^0.3.4",
"sync-version": "^1.0.1",
"tiny-glob": "^0.2.9",
"userscript-meta-cli": "^0.4.2",
"web-ext": "^7.11.0"
},
"scripts": {
"build": "sync-version src/static/manifest.json && shx rm -rf dist-extension/* && rollup -c && web-ext build",
"build-git": "git archive --output web-ext-artifacts/source.zip master",
"test": "eslint . --cache && web-ext lint",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push --follow-tags && npm run build-git",
"start": "web-ext run"
},
"eslintIgnore": [
"dist-extension",
"dist"
],
"userscript": {
"name": "Linkify Plus Plus",
"namespace": "eight04.blogspot.com",
"include": "*",
"exclude": [
"https://www.google.*/search*",
"https://www.google.*/webhp*",
"https://music.google.com/*",
"https://mail.google.com/*",
"https://docs.google.com/*",
"https://encrypted.google.com/*",
"https://*101weiqi.com/*",
"https://w3c*.github.io/*",
"https://www.paypal.com/*",
"https://term.ptt.cc/*",
"https://mastodon.social/*"
],
"grant": [
"GM.getValue",
"GM.setValue",
"GM.deleteValue",
"GM_addStyle",
"GM_registerMenuCommand",
"GM_getValue",
"GM_setValue",
"GM_deleteValue",
"GM_addValueChangeListener",
"unsafeWindow"
],
"compatible": [
"firefox Tampermonkey latest",
"chrome Tampermonkey latest"
]
},
"private": true,
"dependencies": {
"event-lite": "^0.1.3",
"gm-webext-pref": "^0.4.2",
"linkify-plus-plus-core": "^0.6.1",
"sentinel-js": "^0.0.7",
"webext-dialog": "^0.1.1",
"webext-pref": "^0.6.0",
"webextension-polyfill": "^0.10.0"
},
"webExt": {
"sourceDir": "dist-extension",
"build": {
"overwriteDest": true
}
}
}