-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
28 lines (28 loc) · 1.06 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
{
"name": "vscode-search-provider",
"version": "17",
"description": "Provide recent VSCode projects as search results in overview",
"repository": "https://github.com/jomik/vscode-search-provider.git",
"author": "Jonas Holst Damtoft",
"license": "MIT",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"concurrently": "^5.3.0",
"eslint": "^7.9.0",
"eslint-plugin-immutable": "^1.0.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"scripts": {
"lint": "eslint *.ts",
"compile:prefs": "tsc --build tsconfig.prefs.json",
"compile:extension": "tsc --build tsconfig.extension.json",
"compile:schemas": "glib-compile-schemas --strict schemas/",
"compile": "concurrently yarn:compile:prefs yarn:compile:extension yarn:compile:schemas",
"format": "prettier **/*.ts *.json .eslintrc.json",
"package": "gnome-extensions pack --extra-source prefs.xml --extra-source LICENSE",
"nested": "dbus-run-session -- gnome-shell --nested --wayland"
}
}