-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "perfect-home",
"description": "Firefox/Chrome new tab replacement",
"version": "0.14.0",
"author": "PerfectThings",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/perfect-things/perfect-home"
},
"scripts": {
"ext:start": "web-ext run --no-reload -s ./dist -p test-profile --keep-profile-changes",
"ext:lint": "web-ext lint -s ./dist",
"ext:build": "web-ext build --overwrite-dest -s ./dist",
"src:start": "gulp watch",
"dist": "gulp build --prod",
"build": "gulp build",
"watch": "run-p ext:start src:start",
"start": "run-s build watch"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.2.2",
"chalk": "^5.3.0",
"del": "^7.1.0",
"detect-indent": "^7.0.1",
"eslint": "^8.47.0",
"esbuild-svelte": "^0.7.4",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-svelte": "^2.32.4",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-env": "^0.4.0",
"gulp-esbuild": "^0.11.2",
"gulp-eslint-new": "^1.8.3",
"gulp-livereload": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-stylus": "^3.0.1",
"inquirer": "^9.2.11",
"npm-run-all": "^4.1.5",
"open": "^9.1.0",
"ora": "^7.0.1",
"semver": "^7.3.5",
"simple-git": "^3.19.1",
"svelte": "^4.2.0",
"through2": "^4.0.2",
"web-ext": "^7.7.0",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"sortablejs": "^1.15.0"
},
"webExt": {
"sourceDir": "dist/",
"ignoreFiles": [
"package.json",
"package-lock.json",
"release.js",
"gulpfile.js",
"config-prod.json"
]
}
}