-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "ags",
"version": "3.1.2",
"type": "module",
"author": "Aylur",
"license": "LGPL-2.1",
"repository": {
"type": "git",
"url": "https://github.com/aylur/ags.git"
},
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/aylur"
},
"peerDependencies": {
"gnim": "^1.9.1"
},
"exports": {
".": "./lib/index.ts",
"./app": "./lib/app/index.ts",
"./gtk4": "./lib/gtk4/index.ts",
"./gtk4/app": "./lib/gtk4/app.ts",
"./gtk4/jsx-runtime": "./lib/gtk4/jsx-runtime.ts",
"./gtk3": "./lib/gtk3/index.ts",
"./gtk3/app": "./lib/gtk3/app.ts",
"./gtk3/jsx-runtime": "./lib/gtk3/jsx-runtime.ts",
"./file": "./lib/file.ts",
"./process": "./lib/process.ts",
"./time": "./lib/time.ts",
"./gobject": "./lib/gobject.ts",
"./dbus": "./lib/dbus.ts",
"./fetch": "./lib/fetch.ts"
},
"engines": {
"gjs": ">=1.79.0"
},
"os": [
"linux"
],
"devDependencies": {
"@eslint/js": "latest",
"eslint": "^9.39.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
},
"scripts": {
"lint": "eslint . --fix",
"types": "npx @ts-for-gir/cli generate -o @girs --ignoreVersionConflicts"
},
"prettier": {
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"printWidth": 100,
"quoteProps": "consistent"
}
}