-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 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
{
"name": "side-scribe",
"displayName": "SideScribe",
"version": "0.1.2",
"description": "AI Chat Table of Contents",
"author": "Noah",
"license": "MIT",
"packageManager": "pnpm@10.12.1",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build --source-maps && pnpm sentry:sourcemaps",
"build:ci": "plasmo build",
"package": "plasmo package",
"test": "vitest run",
"test:ci": "vitest run --reporter=junit --outputFile=test-report.junit.xml",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org xicro --project side-scribe ./build/chrome-mv3-prod && sentry-cli sourcemaps upload --org xicro --project side-scribe ./build/chrome-mv3-prod"
},
"dependencies": {
"@plasmohq/storage": "^1.15.0",
"@sentry/cli": "^2",
"@sentry/browser": "^10.32.1",
"plasmo": "0.90.5",
"svelte": "4.2.9",
"svelte-preprocess": "5.1.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@testing-library/svelte": "^5.3.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@vitest/coverage-v8": "^4.0.16",
"autoprefixer": "10.4.17",
"c8": "^10.1.3",
"happy-dom": "^20.0.11",
"jsdom": "^27.4.0",
"postcss": "8.4.35",
"prettier": "3.2.4",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"vitest": "^4.0.16"
},
"manifest": {
"version_name": "0.1.2-beta",
"host_permissions": [
"https://*/*"
],
"permissions": [
"sidePanel",
"contextMenus",
"storage",
"tabs"
],
"commands": {
"toggle-toc": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "Toggle Table of Contents"
}
}
}
}