-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.1 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.1 KB
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
101
102
103
104
105
106
107
{
"name": "pano",
"version": "1.0.0",
"author": "Alperen Elhan <alperen@elhan.io>",
"private": true,
"license": "GPL-2.0-or-later",
"scripts": {
"build": "yarn run build:ts && yarn run gen:locale && yarn run build:extension",
"gen:locale": "NODE_OPTIONS='--experimental-require-module' yarn run ts-node scripts/generateLocale.ts",
"check:locale": "NODE_OPTIONS='--experimental-require-module' 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/pano@elhan.io.zip' && cd ./dist && zip -qr 'pano@elhan.io.zip' .",
"watch": "yarn run build && yarn run rollup -c --watch",
"test": "jasmine --module --no-config build/tests/",
"lint": "eslint 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"
}
},
"engines": {
"node": ">= 20.17.0 || >= 22.0.0"
},
"engineStrict": true,
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@girs/adw-1": "1.7.0-4.0.0-beta.21",
"@girs/clutter-16": "^16.0.0-4.0.0-beta.21",
"@girs/gda-5.0": "5.0.0-4.0.0-beta.21",
"@girs/gda-6.0": "6.0.0-4.0.0-beta.21",
"@girs/gdk-4.0": "4.0.0-4.0.0-beta.21",
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.21",
"@girs/gio-2.0": "2.83.3-4.0.0-beta.21",
"@girs/glib-2.0": "2.83.3-4.0.0-beta.21",
"@girs/gnome-shell": "48.0.0-next.2",
"@girs/gobject-2.0": "2.83.3-4.0.0-beta.21",
"@girs/graphene-1.0": "1.0.0-4.0.0-beta.21",
"@girs/gsound-1.0": "1.0.0-4.0.0-beta.21",
"@girs/gtk-4.0": "4.17.5-4.0.0-beta.21",
"@girs/meta-16": "^16.0.0-4.0.0-beta.21",
"@girs/pango-1.0": "1.56.0-4.0.0-beta.21",
"@girs/shell-16": "^16.0.0-4.0.0-beta.21",
"@girs/soup-3.0": "3.6.4-4.0.0-beta.21",
"@girs/st-16": "16.0.0-4.0.0-beta.21",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/eslint__eslintrc": "^2.1.2",
"@types/events": "^3.0.3",
"@types/gettext-parser": "^8.0.0",
"@types/highlight.js": "^10.1.0",
"@types/is-url": "^1.2.32",
"@types/jasmine": "^5.1.6",
"@types/prismjs": "^1.26.5",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@types/node": "^22.13.4",
"cross-env": "^7.0.3",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fill-pot-po": "^4.0.2",
"gettext-extractor": "^3.8.0",
"gettext-parser": "^8.0.0",
"glob": "^11.0.1",
"husky": "^9.1.7",
"prettier": "^3.5.1",
"rollup": "^4.34.8",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-styler": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"chalk": "4.1.2"
},
"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": "yarn@1.22.22"
}