-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 2.01 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
{
"name": "gnome-shell",
"version": "47.0.0-next.4",
"description": "GJS TypeScript type definitions for GNOME Shell Extensions",
"main": "src/index.js",
"type": "module",
"private": true,
"typedoc": {
"entryPoint": "./src/index.d.ts",
"readmeFile": "./README.md",
"displayName": "GNOME Shell",
"tsconfig": "./tsconfig.doc.json"
},
"scripts": {
"validate": "yarn validate:types && yarn validate:example",
"validate:types": "yarn workspace @girs/gnome-shell validate",
"validate:example": "yarn workspace @gjsify/gnome-shell-hello-world-example validate",
"publish": "yarn publish:latest",
"publish:latest": "yarn workspace @girs/gnome-shell npm publish --tolerate-republish --tag latest --access public",
"publish:next": "yarn workspace @girs/gnome-shell npm publish --tolerate-republish --tag next --access public",
"build": "yarn build:types && yarn build:example",
"build:example": "yarn workspace @gjsify/gnome-shell-hello-world-example build",
"build:types": "yarn workspace @girs/gnome-shell build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"gitHooks": {
"pre-commit": "yarn run prettier:check"
},
"workspaces": [
"packages/*",
"examples/*"
],
"keywords": [
"Gir",
"TypeScript",
"types",
"GObject-Introspection",
"GJS",
"GnomeShell",
"GNOME",
"Shell",
"Extension"
],
"author": "Pascal Garber <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gjsify/gnome-shell.git"
},
"bugs": {
"url": "https://github.com/gjsify/gnome-shell/issues"
},
"homepage": "https://github.com/gjsify/gnome-shell#readme",
"packageManager": "[email protected]",
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "5.6.3"
}
}