-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.96 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.96 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
{
"name": "rags",
"version": "1.10.0",
"type": "module",
"repository": "https://github.com/NotAShelf/rags",
"authors": [
"Aylur",
"NotAShelf <[email protected]>"
],
"license": "GPL",
"dependencies": {
"@girs/atk-1.0": "2.58.3-4.0.0-beta.40",
"@girs/cairo-1.0": "1.0.0-4.0.0-beta.40",
"@girs/dbusmenugtk3-0.4": "0.4.0-4.0.0-beta.40",
"@girs/freetype2-2.0": "2.0.0-4.0.0-beta.40",
"@girs/gdk-3.0": "3.24.51-4.0.0-beta.40",
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.40",
"@girs/gio-2.0": "2.86.4-4.0.0-beta.40",
"@girs/gjs": "4.0.0-beta.40",
"@girs/glib-2.0": "2.86.4-4.0.0-beta.40",
"@girs/gmodule-2.0": "2.0.0-4.0.0-beta.40",
"@girs/gobject-2.0": "2.86.4-4.0.0-beta.40",
"@girs/gtk-3.0": "3.24.51-4.0.0-beta.40",
"@girs/gvc-1.0": "1.0.0-4.0.0-beta.40",
"@girs/harfbuzz-0.0": "11.5.1-4.0.0-beta.40",
"@girs/nm-1.0": "1.49.4-4.0.0-beta.40",
"@girs/notify-0.7": "0.8.8-4.0.0-beta.40",
"@girs/pango-1.0": "1.57.0-4.0.0-beta.40",
"@girs/soup-3.0": "3.6.6-4.0.0-beta.40",
"@girs/xlib-2.0": "2.0.0-4.0.0-beta.40",
"typescript": "^5.9.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"serve": "^14.2.6",
"typedoc": "^0.28.17",
"typedoc-rhineai-theme": "^1.2.0"
},
"scripts": {
"lint": "eslint .",
"fmt": "prettier --write 'src/**/*.ts' 'types/**/*.ts' 'eslint.config.js'",
"fmt:check": "prettier --check 'src/**/*.ts' 'types/**/*.ts' 'eslint.config.js'",
"build": "tsc --skipLibCheck",
"dev": "tsc --watch --skipLibCheck",
"doc": "typedoc",
"doc:serve": "typedoc && serve docs/html"
}
}