This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.9 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
{
"name": "minimize-to-tray",
"version": "1.0.0",
"author": "Alperen Elhan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn run build:types && yarn run build:ts && yarn run build:extension",
"clean": "yarn run clean:ts && yarn run build:types",
"build:types": "yarn run clean:types && ts-for-gir generate",
"clean:types": "rm -rf ./@types",
"build:ts": "yarn run clean:ts && rollup -c",
"clean:ts": "rm -rf ./dist",
"build:extension": "yarn run build:schema",
"build:schema": "yarn run clean:schema && glib-compile-schemas ./resources/schemas --targetdir=./dist/schemas/",
"clean:schema": "rm -rf ./dist/schemas/*.compiled",
"build:package": "rm -rf './dist/[email protected]' && cd ./dist && zip -qr '[email protected]' .",
"watch": "yarn run build && yarn run rollup -c --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts src/"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/events": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"rollup": "^2.26.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-scss": "^2.6.0",
"ts-for-gir": "https://github.com/oae/ts-for-gjs",
"typescript": "^4.0.2"
},
"dependencies": {}
}