-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 6.62 KB
/
Copy pathpackage.json
File metadata and controls
177 lines (177 loc) · 6.62 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "ophel",
"displayName": "Ophel Atlas - AI 对话结构化与导航工具",
"version": "1.2.0",
"description": "将 AI 对话转化为可阅读、可导航、可复用的知识内容。通过实时大纲、会话文件夹与 Prompt 词库,让对话告别无限滚动,成为可组织、可沉淀的工作流,适用于高频使用 AI 的学习与工作场景。",
"author": "urzeye",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/urzeye/ophel.git"
},
"alias": {
"@pilio/gemini-watermark-remover": "./node_modules/@pilio/gemini-watermark-remover/src/sdk/index.js"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"prepare:mermaid-assets": "node scripts/prepare-mermaid-assets.mjs",
"dev": "pnpm prepare:mermaid-assets && plasmo dev",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"registry:validate": "tsx registry/scripts/validate.mjs",
"registry:build": "tsx registry/scripts/build-dist-local.mjs",
"registry:build:signed": "tsx registry/scripts/build-dist.mjs",
"registry:serve": "tsx registry/scripts/serve-local.mjs",
"build": "pnpm prepare:mermaid-assets && plasmo build",
"build:firefox": "pnpm prepare:mermaid-assets && plasmo build --target=firefox-mv3",
"build:all": "pnpm build && pnpm build:firefox",
"package": "pnpm build && plasmo package",
"package:firefox": "pnpm build:firefox && node scripts/package-firefox.mjs",
"package:all": "pnpm package && pnpm package:firefox",
"build:userscript": "vite build --config vite.userscript.config.ts",
"verify:userscript-assets": "node scripts/verify-userscript-assets.mjs",
"build:userscript:local": "node -e \"const { spawnSync } = require('node:child_process'); const path = require('node:path'); const vitePkg = require.resolve('vite/package.json'); const viteBin = path.join(path.dirname(vitePkg), 'bin', 'vite.js'); const result = spawnSync(process.execPath, [viteBin, 'build', '--config', 'vite.userscript.config.ts'], { stdio: 'inherit', env: { ...process.env, USERSCRIPT_ASSET_BASE_URL: 'http://127.0.0.1:8123' } }); process.exit(result.status ?? 1);\"",
"serve:userscript:assets": "node scripts/serve-userscript-assets.mjs",
"sync:supporters": "node scripts/generate-supporters-readmes.mjs",
"sync:contributors": "node scripts/sync-contributors.mjs && npx all-contributors-cli generate",
"sync:all": "pnpm sync:supporters && pnpm sync:contributors",
"release": "node scripts/release.mjs",
"release-notes:sync": "node scripts/sync-release-notes.mjs",
"release:redo": "node scripts/release.mjs redo",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@mdit/plugin-tex": "^0.24.1",
"@noble/ed25519": "3.1.0",
"@pilio/gemini-watermark-remover": "1.0.17",
"@plasmohq/storage": "^1.12.0",
"effect": "^3.19.13",
"fuzzysort": "3.1.0",
"highlight.js": "^11.11.1",
"katex": "^0.16.44",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"plasmo": "0.90.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-simple-code-editor": "^0.13.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@mermaid-js/tiny": "11.13.0",
"@types/chrome": "^0.0.258",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.19.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^5.1.2",
"ajv": "^8.17.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.2.4",
"safe-regex2": "^5.1.1",
"terser": "^5.46.0",
"tsx": "^4.23.1",
"typescript": "5.3.3",
"vite": "^7.3.1",
"vite-plugin-monkey": "^7.1.8",
"vitepress": "^1.6.4",
"vitest": "3.2.4"
},
"manifest": {
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvAcJdUSu6L/pUzQoiycrhoVxXuB0urO8sVre1hOyEQ+SNbblsQ/b1E5IHiXTP4WglmvqM6Fe0CgNJBi6YxtHlWOmXv+rZ7xEMoCQAw4RdEBbm9Vf+bCwBeI9k1Pps9CcMWEE3bdBCC/z8/BcME37id56KIhSPDhifm2XM7W2AkgFRUo49nwlkNXaCkUZFSt/EMjCY30XrQ/rnltBcBZckbFxIJpIIbF8K7OScjagWaVa8MVWK/wiSJfN+sfh2La52yjhobDqHq9lLZLu6YBa8MS5MambmmpF0FnXnT6jdGiBxxwYUjg4Yy8k9fIhq8NwVshEPbWBANu7fCdV+9Ii2wIDAQAB",
"browser_specific_settings": {
"gecko": {
"id": "igodu.love@gmail.com",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": [
"none"
]
}
}
},
"permissions": [
"storage",
"alarms",
"declarativeNetRequestWithHostAccess"
],
"optional_permissions": [
"notifications",
"cookies"
],
"host_permissions": [
"https://gemini.google.com/*",
"https://business.gemini.google/*",
"https://aistudio.google.com/*",
"https://*.googleusercontent.com/*",
"https://chatgpt.com/*",
"https://chat.openai.com/*",
"https://*.oaiusercontent.com/*",
"https://grok.com/*",
"https://claude.ai/*",
"https://www.doubao.com/*",
"https://ima.qq.com/*",
"https://chat.deepseek.com/*",
"https://www.kimi.com/*",
"https://chatglm.cn/*",
"https://chat.qwen.ai/*",
"https://www.qianwen.com/*",
"https://yuanbao.tencent.com/*",
"https://chat.z.ai/*"
],
"optional_host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"assets/icon.png",
"assets/fonts/*",
"assets/assistant-mermaid-runner.js",
"assets/assistant-mermaid-vendor.js",
"assets/release-notes/*",
"assets/notification-sounds/*",
"assets/userscript/*",
"KaTeX_*.woff2"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"open-global-url": {
"suggested_key": {
"default": "Alt+O",
"mac": "Alt+O"
},
"description": "Open Global URL"
}
}
}
}