-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 820 Bytes
/
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
{
"name": "raycast-cross-extension",
"version": "0.2.3",
"description": "Defines the development approach for cross-extension in Raycast",
"repository": "https://github.com/LitoMore/raycast-cross-extension-conventions",
"main": "distribution/index.js",
"types": "distribution",
"files": [
"distribution"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "del-cli distribution && tsc",
"test": "xo"
},
"keywords": [
"raycast",
"extension",
"cross-extension",
"conventions"
],
"author": "LitoMore",
"license": "CC0-1.0",
"peerDependencies": {
"@raycast/api": ">=1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^22.10.2",
"del-cli": "^6.0.0",
"typescript": "^5.7.2",
"xo": "^0.60.0"
},
"dependencies": {
"read-pkg-up": "^7.0.1"
}
}