-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 2.43 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
{
"name": "vscode-search-provider",
"version": "2.1.0",
"description": "Provide search results from vscode",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mrmarble/vscode-search-provider.git"
},
"author": "Alvaro Tinoco <[email protected]>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mrmarble/vscode-search-provider/issues"
},
"homepage": "https://github.com/mrmarble/vscode-search-provider#readme",
"sideEffects": false,
"config": {
"domain": "mrmarble.github.com"
},
"scripts": {
"build": "tsc",
"lint": "eslint . -c eslint.config.js",
"lint:fix": "eslint --fix . -c eslint.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "rm -rf dist && rm -f ${npm_package_name}.zip",
"pack": "npm run clean && npm run build && cp metadata.json dist && cp -r schemas dist && cd dist && zip ../${npm_package_name}.zip -9r .",
"install-extension": "touch $XDG_CONFIG_HOME/local/share/gnome-shell/extensions/${npm_package_name}@${npm_package_config_domain} && rm -rf $XDG_CONFIG_HOME/local/share/gnome-shell/extensions/${npm_package_name}@${npm_package_config_domain} && mv dist $XDG_CONFIG_HOME/local/share/gnome-shell/extensions/${npm_package_name}@${npm_package_config_domain}",
"setup": "npm run pack && glib-compile-schemas ./dist/schemas && npm run install-extension",
"debug": "dbus-run-session -- gnome-shell --nested --wayland",
"prepare": "simple-git-hooks",
"test": "node --loader ./tests/mocks/loader.js --loader tsm node_modules/.bin/uvu ./tests \\.spec\\.js$"
},
"release": {
"branches": [
"main"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run format"
},
"lint-staged": {
"*": "eslint --fix"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/node": "^20.14.2",
"bumpp": "^9.4.1",
"esbuild": "^0.21.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.2.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.1.1",
"simple-git-hooks": "^2.11.1",
"tsm": "^2.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"uvu": "^0.5.6"
},
"dependencies": {
"@girs/gjs": "^4.0.0-beta.5",
"@girs/gnome-shell": "^46.0.0-beta8"
}
}