This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.3 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "extensions-sync",
"version": "1.0.0",
"author": "Alperen Elhan <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn run build:ts && yarn run build:extension",
"clean": "yarn run clean:ts",
"build:ts": "yarn run clean:ts && rollup -c",
"clean:ts": "rm -rf ./dist",
"build:extension": "yarn run build:schema",
"build:schema": "yarn run clean:schema && glib-compile-schemas ./resources/schemas --targetdir=./dist/schemas/",
"clean:schema": "rm -rf ./dist/schemas/*.compiled",
"build:package": "yarn run build && rm -rf './dist/[email protected]' && cd ./dist && zip -qr '[email protected]' .",
"watch": "yarn run build && yarn run rollup -c --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts src/"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@gi-types/gdk4": "^4.0.1",
"@gi-types/gdkpixbuf2": "^2.0.2",
"@gi-types/gio2": "^2.72.1",
"@gi-types/glib2": "^2.72.1",
"@gi-types/gobject2": "^2.72.1",
"@gi-types/gtk4": "^4.6.1",
"@gi-types/meta10": "^10.0.1",
"@gi-types/shell0": "^0.1.1",
"@gi-types/soup3": "^3.0.1",
"@gi-types/st1": "^1.0.1",
"@gi.ts/cli": "^1.5.7",
"@gi.ts/lib": "^1.5.9",
"@gi.ts/parser": "^1.5.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/events": "^3.0.0",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"prettier": "^2.4.1",
"rollup": "^2.58.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-styles": "^3.14.1",
"typescript": "^4.4.4",
"xml2js": "^0.4.23"
},
"dependencies": {
"events": "^3.3.0",
"fast-xml-parser": "^3.21.0"
}
}