-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "@raycast/utils",
"version": "1.18.1",
"description": "Set of utilities to streamline building Raycast extensions",
"author": "Raycast Technologies Ltd.",
"homepage": "https://developers.raycast.com/utils-reference",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/",
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run lint",
"prepublishOnly": "npm run build && npm test",
"postpublish": "gh workflow run sync-utils-docs.yml --repo raycast/extensions"
},
"peerDependencies": {
"@raycast/api": ">=1.69.0"
},
"keywords": [
"Raycast",
"utilities",
"extensions"
],
"files": [
"dist",
"README.md"
],
"license": "MIT",
"dependencies": {
"cross-fetch": "^3.1.6",
"dequal": "^2.0.3",
"object-hash": "^3.0.0",
"signal-exit": "^4.0.2",
"stream-chain": "^2.2.5",
"stream-json": "^1.8.0"
},
"devDependencies": {
"@raycast/api": "1.52.0",
"@types/content-type": "^1.1.6",
"@types/object-hash": "^3.0.4",
"@types/signal-exit": "^3.0.2",
"@types/stream-chain": "^2.0.4",
"@types/stream-json": "^1.7.7",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-hooks": "4.6.0",
"typescript": "5.2.2"
}
}