forked from LOVECHEN/raycast-unblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.41 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "raycast-unblock",
"type": "module",
"version": "0.2.1-beta.0",
"packageManager": "[email protected]",
"description": "Unblock all features in Raycast Pro Plan",
"author": "wibus-wee <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/wibus-wee/raycast-unblock#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wibus-wee/raycast-unblock.git"
},
"bugs": "https://github.com/wibus-wee/raycast-unblock/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:rollup": "NODE_OPTIONS=--max-old-space-size=4096 rollup -c",
"bundle": "sh scripts/single-application.sh",
"dev": "pnpm start:dev",
"lint": "eslint .",
"release": "bumpp",
"start": "esno src/index.ts",
"start:dev": "esno watch src/index.ts",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@azure/openai": "1.0.0-beta.11",
"@fastify/compress": "^7.0.0",
"@google/generative-ai": "^0.2.0",
"@ifyour/deeplx": "^0.1.17",
"consola": "^3.2.3",
"destr": "^2.0.2",
"fastify": "^4.26.0",
"fastify-sse-v2": "^3.1.2",
"ofetch": "^1.3.3",
"openai": "^4.26.0",
"toml": "^3.0.0",
"uuid": "^9.0.1",
"zx": "^7.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.8",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"lint-staged": "^15.2.0",
"pnpm": "^8.15.1",
"rollup": "^4.9.6",
"rollup-plugin-esbuild": "^6.1.1",
"simple-git-hooks": "^2.9.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"resolutions": {
"@babel/traverse": "7.23.9",
"node-fetch": "./external/node-fetch"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}