-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.3 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.3 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
{
"name": "graphiti-pubky-extension",
"version": "1.0.0",
"description": "Graphiti - Pubky URL Tagger Chrome Extension",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "tsc && vite build && vite build --config vite.content.config.ts",
"build:check": "npm run build && node check-build.js",
"test:all": "node test-build-and-features.js",
"precommit": "npm run build:check && npm test -- --run",
"build:analyze": "tsc && vite build && npm run analyze",
"analyze": "npx vite-bundle-visualizer --open",
"preview": "vite preview",
"package": "npm run build && cd dist && zip -r ../graphiti-extension.zip . -x '*.DS_Store' '*.map' && cd .. && echo '✓ Extension package created: graphiti-extension.zip'",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:errors": "node run-e2e-with-error-capture.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"dependencies": {
"@synonymdev/pubky": "^0.5.4",
"@types/dompurify": "^3.0.5",
"dom-anchor-text-position": "^5.0.0",
"dom-anchor-text-quote": "^4.0.2",
"dompurify": "^3.3.1",
"pubky-app-specs": "^0.4.0",
"qrcode": "^1.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-image-crop": "^10.1.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.40.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/chrome": "^0.0.268",
"@types/node": "^20.14.9",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^24.0.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"typescript-eslint": "^8.49.0",
"vite": "^5.3.3",
"vitest": "^1.3.1"
}
}