-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.53 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "aisknet",
"displayName": "AIskNet",
"version": "0.3.1",
"license": "MIT",
"description": "Locally-run AI that answers questions from your current webpage",
"author": "Alberto García <[email protected]>",
"scripts": {
"dev": "plasmo dev",
"build": "run-s build:*",
"build:chrome": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv3",
"build:edge": "plasmo build --target=edge-mv3",
"package": "run-s package:*",
"package:chrome": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv3",
"package:edge": "plasmo package --target=edge-mv3",
"lint": "prettier --check . && eslint . && svelte-check --no-tsconfig --ignore 'landing'",
"format": "prettier --write .",
"fix": "prettier --write . && eslint . --fix && svelte-check --no-tsconfig --ignore 'landing'",
"gendocs": "typedoc --plugin @zamiell/typedoc-plugin-not-exported ./src",
"postinstall": "cd landing && pnpm install",
"dev-landing": "cd landing && pnpm run dev",
"build-landing": "cd landing && pnpm run build"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.13.0",
"@visheratin/tokenizers": "^0.1.5",
"@visheratin/web-ai": "^1.4.5",
"html-to-text": "^9.0.5",
"langchain": "^0.3.6",
"localforage": "^1.10.0",
"mark.js": "^8.11.1",
"ml-distance": "^4.0.1",
"pdfjs-dist": "^4.9.124",
"svelte": "^4.2.19"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@plasmohq/rps": "^1.8.7",
"@tailwindcss/typography": "^0.5.15",
"@types/chrome": "^0.0.287",
"@types/html-to-text": "^9.0.4",
"@types/mark.js": "^8.11.12",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@zamiell/typedoc-plugin-not-exported": "^0.3.0",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.14",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-svelte": "^2.46.1",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^15.13.0",
"onnxruntime-web": "~1.15.1",
"plasmo": "^0.89.4",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte-check": "^3.8.6",
"svelte-eslint-parser": "^0.33.1",
"svelte-preprocess": "^5.1.4",
"tailwindcss": "^3.4.16",
"typedoc": "^0.27.3",
"typescript": "^5.7.2"
},
"manifest": {
"permissions": [
"scripting",
"activeTab"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"assets/*.json",
"assets/ort-wasm-simd.wasm",
"pdfjs-dist/build/pdf.worker.min.js"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+A"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "{a1e0a9b9-791d-44d9-a08c-58d7997df728}"
}
}
},
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}