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
|
{
"name": "astal",
"version": "0.1.0",
"description": "Building blocks for buildin linux desktop shell",
"type": "module",
"author": "Aylur",
"license": "GPL",
"repository": {
"type": "git",
"url": "https://github.com/astal-sh/libastal.git",
"directory": "gjs"
},
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/aylur"
},
"exports": {
".": "./index.ts",
"./app": "./src/application.ts",
"./file": "./src/file.ts",
"./process": "./src/process.ts",
"./time": "./src/time.ts",
"./variable": "./src/variable.ts",
"./widgets": "./src/widgets.ts"
},
"engines": {
"gjs": ">=1.79.0"
},
"os": [
"linux"
],
"publishConfig": {},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@stylistic/eslint-plugin": "latest",
"@ts-for-gir/cli": "latest",
"@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"scripts": {
"lint": "eslint . --fix",
"types": "ts-for-gir generate -o node_modules/@girs --package"
}
}
|