forked from dagimg-dot/vicinae-gnome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.28 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.28 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
{
"name": "vicinae-gnome-extension",
"version": "1.6.0",
"author": "Dagim G. Astatkie",
"type": "module",
"license": "MIT",
"private": true,
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@girs/gjs": "^4.0.0-beta.25",
"@girs/gnome-shell": "^48.0.4",
"dotenv": "^17.3.1",
"esbuild": "^0.25.9",
"esbuild-plugin-tsc": "^0.5.0",
"esbuild-preserve-whitespace": "^1.1.1",
"typescript": "^5.9.2"
},
"scripts": {
"dev": "bun check && ./scripts/build.sh --build --unsafe-reload",
"dev:nested": "bun build:install && env MUTTER_DEBUG_DUMMY_MODE_SPECS=1500x900 ./scripts/dev-run.sh",
"build": "./scripts/build.sh --build",
"build:install": "bun check && ./scripts/build.sh --build --install",
"build:install:gdm": "bun check && ./scripts/build.sh --build --install --restart-gdm",
"setup": "./scripts/setup.sh",
"log": "./scripts/log.sh -f",
"log:all": "./scripts/log.sh",
"lint": "biome lint --write .",
"lint:fix": "biome lint --write --unsafe .",
"format": "biome format --write .",
"check": "biome check --write .",
"check:types": "tsc -noEmit",
"bump": "bun scripts/bump-version.js bump",
"release": "bun scripts/bump-version.js release",
"update-credits": "node scripts/update-contrib.js"
}
}