-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.89 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
{
"name": "notion-mark-manager",
"version": "2.1.0",
"description": "Manage your colored texts and comments efficiently in Notion.",
"keywords": [
"chrome-extension",
"firefox-addon",
"notion",
"productivity-tool"
],
"author": "Yeefun Lin <[email protected]> (https://yeefun.github.io/)",
"license": "GPL",
"scripts": {
"predev:f": "rimraf dist && mkdir dist && cp manifest.firefox.json dist/manifest.json && cp -R static/* dist/",
"dev:f": "parcel watch src/* src/**/* --no-source-maps --no-hmr",
"prebuild:f": "rimraf dist",
"build:f": "parcel build src/* src/**/* --no-content-hash --no-cache",
"postbuild:f": "cp manifest.firefox.json dist/manifest.json && cp -R static/* dist/",
"predev:c": "rimraf dist && mkdir dist && cp manifest.chrome.json dist/manifest.json && cp -R static/* dist/",
"dev:c": "parcel watch src/* src/**/* --no-source-maps --no-hmr",
"prebuild:c": "rimraf dist",
"build:c": "parcel build src/* src/**/* --no-content-hash --no-cache",
"postbuild:c": "cp manifest.chrome.json dist/manifest.json && cp -R static/* dist/",
"lint": "eslint --ignore-path .gitignore .",
"lints": "stylelint 'src/css/*.{css,scss}' --fix"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.4",
"prettier": "2.0.5",
"pretty-quick": "^3.0.0",
"pug": "^3.0.0",
"rimraf": "^3.0.2",
"sass": "^1.26.10",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0"
},
"engines": {
"node": ">= 12"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'src/js/**/*.js'"
}
},
"dependencies": {
"clipboard": "^2.0.6",
"fea": "^1.1.0",
"feature": "^1.1.0",
"file-saver": "^2.0.2"
}
}