-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.9 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
{
"name": "aurora-shell",
"description": "A customizable GNOME Shell extension that enhances the user experience with various modules and features.",
"type": "module",
"main": "dist/extension.js",
"license": "GPL-3.0-only",
"private": true,
"workspaces": [
"."
],
"scripts": {
"clear": "rm -rf dist",
"check": "tsc --noEmit",
"build:ts": "tsx esbuild.ts",
"build:css": "tsx sass.config.ts",
"build": "yarn clear && yarn build:css && yarn build:ts",
"lint": "cross-env NODE_OPTIONS=--import=tsx/esm eslint .",
"validate": "yarn check && yarn lint && yarn prettier:check && yarn stylelint",
"prettier:check": "prettier --check \"src/**/*.{ts,scss}\"",
"stylelint": "stylelint \"src/styles/**/*.scss\"",
"watch:css": "tsx sass.config.ts --watch",
"test:unit": "node --import tsx/esm --test tests/unit/*.test.ts",
"test:unit:coverage": "node --import tsx/esm --experimental-test-coverage --test tests/unit/*.test.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^2.6.4",
"@tsconfig/strictest": "^2.0.6",
"@types/adm-zip": "^0.5.7",
"@types/node": "^24.10.1",
"adm-zip": "^0.5.16",
"chokidar": "^3.6.0",
"cross-env": "^10.1.0",
"esbuild": "^0.25.11",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"sass": "^1.93.2",
"stylelint": "^17.7.0",
"stylelint-config-recommended-scss": "^17.0.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
},
"dependencies": {
"@girs/adw-1": "1.10.0-4.0.0-rc.15",
"@girs/gjs": "^4.0.0-rc.15",
"@girs/gnome-shell": "^50.0.0",
"@girs/gobject-2.0": "^2.88.0-4.0.0-rc.15",
"@girs/shell-18": "^18.0.0-4.0.0-rc.15",
"@girs/soup-3.0": "3.6.6-4.0.0-rc.15",
"@girs/st-18": "^18.0.0-4.0.0-rc.15"
},
"packageManager": "yarn@4.14.1"
}