-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.25 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
{
"type": "module",
"name": "salopbar",
"repository": {
"directory": "salopbar",
"url": "https://github.io/HelenoSalgado",
"type": "git"
},
"keywords": [
"hyprland",
"arch-linux",
"status-bar",
"gjs",
"ags",
"typescript",
"gtk4",
"wayland",
"mpris"
],
"description": "Barra de status moderna para Hyprland e Arch Linux, construída com AGS e TypeScript.",
"version": "0.0.1",
"author": {
"name": "Heleno Salgado",
"url": "https://heleno.dev"
},
"engines": {
"gjs": ">=1.79.0"
},
"os": [
"linux"
],
"bundleDependencies": [
"esbuild"
],
"dependencies": {
"esbuild": "^0.25.9",
"ags": "*"
},
"scripts": {
"build:install": "npm install && arch-meson build && meson install -C build",
"build:test": "meson setup --prefix \"$(pwd)/dist\" --reconfigure build && meson install -C build",
"start:dev": "nodemon startdev.js"
},
"nodemonConfig": {
"ext": "tsx,ts,css",
"watch": [
"src/"
],
"delay": "2000"
},
"devDependencies": {
"@eslint/js": "latest",
"@girs/adw-1": "latest",
"@types/node": "^24.3.0",
"eslint": "latest",
"nodemon": "^3.1.10",
"typescript": "latest",
"typescript-eslint": "latest"
}
}