-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
98 lines (98 loc) · 3.78 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
{
"name": "pano",
"version": "1.0.0",
"author": "Alperen Elhan <[email protected]>",
"private": true,
"license": "GPL-2.0-or-later",
"scripts": {
"build": "yarn run build:ts && yarn run gen:locale && yarn run build:extension",
"gen:locale": "yarn run ts-node scripts/generateLocale.ts",
"check:locale": "yarn run ts-node scripts/generateLocale.ts --dry-run",
"build:ts": "yarn run clean:ts && rollup -c --failAfterWarnings && sed -i '/setTimeout/d' dist/thirdparty/prismjs.js && sed -i 's/var\\ /let\\ /g' dist/extension.js dist/prefs.js",
"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": "yarn run build && rm -rf './dist/[email protected]' && cd ./dist && zip -qr '[email protected]' .",
"watch": "yarn run build && yarn run rollup -c --watch",
"test": "jasmine --module --no-config build/tests/",
"lint": "eslint --ext .ts src/",
"shell:restart": "busctl --user call org.gnome.Shell /io/elhan/Pano io.elhan.Pano restart",
"build-and-restart": "yarn run build && yarn run shell:restart",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@girs/adw-1": "1.6.0-4.0.0-beta.16",
"@girs/clutter-15": "15.0.0-4.0.0-beta.16",
"@girs/gda-5.0": "5.0.0-4.0.0-beta.16",
"@girs/gda-6.0": "6.0.0-4.0.0-beta.16",
"@girs/gdk-4.0": "4.0.0-4.0.0-beta.16",
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.16",
"@girs/gio-2.0": "2.82.0-4.0.0-beta.16",
"@girs/glib-2.0": "2.82.0-4.0.0-beta.16",
"@girs/gnome-shell": "47.0.0-next.4",
"@girs/gobject-2.0": "2.82.0-4.0.0-beta.16",
"@girs/graphene-1.0": "1.0.0-4.0.0-beta.16",
"@girs/gsound-1.0": "1.0.0-4.0.0-beta.16",
"@girs/gtk-4.0": "4.15.5-4.0.0-beta.16",
"@girs/meta-15": "15.0.0-4.0.0-beta.16",
"@girs/pango-1.0": "1.54.0-4.0.0-beta.16",
"@girs/shell-15": "15.0.0-4.0.0-beta.16",
"@girs/soup-3.0": "3.6.0-4.0.0-beta.16",
"@girs/st-15": "15.0.0-4.0.0-beta.16",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/strictest": "^2.0.5",
"@types/events": "^3.0.3",
"@types/gettext-parser": "^4.0.4",
"@types/highlight.js": "^10.1.0",
"@types/is-url": "^1.2.32",
"@types/jasmine": "^5.1.4",
"@types/prismjs": "^1.26.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"fill-pot-po": "^3.0.4",
"gettext-extractor": "^3.8.0",
"gettext-parser": "^7.0.1",
"glob": "^10.4.1",
"husky": "^9.0.11",
"prettier": "^3.3.0",
"rollup": "^4.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-styles": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"date-fns": "^2.30.0",
"hex-color-converter": "^0.2.1",
"highlight.js": "^11.9.0",
"htmlparser2": "^9.1.0",
"is-url": "^1.2.4",
"pretty-bytes": "^6.1.1",
"prismjs": "^1.29.0",
"validate-color": "https://gitpkg.now.sh/dreamyguy/validate-color/src/validate-color"
},
"packageManager": "[email protected]"
}