-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "riot-global-id",
"title": "Riot Global ID Introspection",
"description": "Introspect Global ID retrieved from the Riot platform",
"icon": "command-icon.png",
"author": "pierre-yves",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Introspect Global ID",
"subtitle": "Riot",
"description": "Introspect a Riot Global ID to retrieve the underlying object type and ID.",
"mode": "view"
},
{
"name": "generate",
"title": "Generate Global ID",
"subtitle": "Riot",
"description": "Generate a Riot Global ID from an object type and ID",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.58.0",
"@raycast/utils": "^1.10.0",
"@tryriot/global-id": "^0.0.23"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"scripts": {
"build": "ray build -e dist",
"build:local": "rimraf dist && ray build -e dist -o dist/",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
}
}