-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "flickernaut",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "An extension that adds quick-launch to Nautilus context menu entries",
"author": "Brilliant Nurzaman",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/imoize/flickernaut#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/imoize/flickernaut.git"
},
"bugs": {
"url": "https://github.com/imoize/flickernaut/issues"
},
"sideEffects": false,
"scripts": {
"build": "make all",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --strict --noEmit"
},
"dependencies": {
"@girs/gjs": "4.0.0-beta.38",
"@girs/gnome-shell": "^49.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-jsdoc": "^61.1.12",
"typescript": "^5.9.3"
}
}