-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathpackage.json
100 lines (100 loc) · 3.67 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vimium-c",
"description": "A keyboard shortcut tool for keyboard-based page navigation and browser tab operations with an advanced omnibar and global shortcuts",
"author": "gdh1995",
"bugs": "https://github.com/gdh1995/vimium-c/issues",
"private": true,
"dependencies": {
"pngjs": "^6.0.0",
"terser": "^5.9.0",
"typescript": "~4.5.1-rc"
},
"devDependencies": {
"clean-css": "^5.1.3",
"deepcopy": "^2.1.0",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-concat": "*",
"gulp-newer": "*",
"gulp-print": "^5.0.2",
"gulp-some": "*",
"gulp-typescript": "^6.0.0-alpha.1",
"html-minifier": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"seedrandom": "^3.0.5"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"homepage": "https://github.com/gdh1995/vimium-c#readme",
"license": "MIT",
"keywords": [
"vimium",
"webextension",
"chrome-extension",
"web-extension",
"all-in-keyboard",
"all-by-keyboard",
"keyboard",
"shortcut",
"chrome",
"firefox",
"edge"
],
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.29.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gdh1995/vimium-c.git"
},
"scripts": {
"tsc": "node scripts/tsc.js",
"watch": "node scripts/tsc.js --watch",
"dev": "node scripts/tsc.js --watch",
"all": "gulp tsc",
"prepare": "node scripts/icons-to-blob.js -q",
"w": "node scripts/tsc.js --watch",
"a": "gulp tsc",
"b": "gulp bg",
"c": "gulp content",
"f": "gulp front",
"l": "gulp lib",
"p": "gulp pages",
"lint": "node ./scripts/eslint.js",
"eslint": "node ./scripts/eslint.js",
"words": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-47} BUILD_BTypes=${BUILD_BTypes:-1}; gulp words",
"build": "gulp build",
"dist": "npm run chrome-latest",
"rebuild": "gulp rebuild",
"legacy": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-32} BUILD_BTypes=1 BUILD_NDEBUG=0 gulp local2\"",
"latest": "bash -c \"BUILD_BTypes=1 BUILD_NDEBUG=0 gulp local2\"",
"legacy-ff": "bash -c \"BUILD_MinFFVer=${BUILD_MinFFVer:-63} BUILD_BTypes=2 BUILD_NDEBUG=0 gulp local2\"",
"latest-ff": "bash -c \"BUILD_BTypes=2 BUILD_NDEBUG=0 gulp local2\"",
"latest-fx": "npm run latest-ff",
"latest-edgehtml": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-53} BUILD_BTypes=4 BUILD_NDEBUG=0 gulp local2\"",
"chrome": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-47} BUILD_BTypes=1 NEED_COMMIT=1 gulp dist && IN_DIST=1 ./scripts/make.sh\"",
"csize": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-47} BUILD_BTypes=${BUILD_BTypes:-1} gulp size/content\"",
"fsize": "bash -c \"BUILD_MinFFVer=${BUILD_MinFFVer:-63} BUILD_BTypes=${BUILD_BTypes:-2} gulp size/content\"",
"chrome-latest": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-89} BUILD_BTypes=1 gulp dist\"",
"chrome-legacy": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-32} BUILD_BTypes=1 gulp dist\"",
"chromium": "npm run chrome",
"firefox": "bash -c \"BUILD_MinFFVer=${BUILD_MinFFVer:-63} BUILD_BTypes=2 NEED_COMMIT=1 gulp dist && IN_DIST=1 ./scripts/make.sh\"",
"edge": "bash -c \"BUILD_MinCVer=${BUILD_MinCVer:-89} BUILD_BTypes=1 BUILD_EdgeC=1 NEED_COMMIT=1 gulp dist && IN_DIST=1 BUILD_EdgeC=1 ./scripts/make.sh\"",
"edge-c": "npm run edge",
"edge-i": "npm run edge",
"edge-insider": "npm run edge",
"edge-e": "npm run latest-edgehtml",
"clean": "gulp clean",
"clear": "gulp clean",
"nclean": "bash -c \"gulp clean\"",
"local": "gulp local",
"start": "gulp local",
"test": "gulp test"
},
"version": "1.0.0"
}