-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.26 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.26 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
{
"name": "codeframe",
"version": "1.0.0",
"type": "module",
"description": "Screenshot capture, annotation & code beautification for developers",
"author": "xie392",
"license": "MIT",
"homepage": "https://github.com/xie392/CodeFrame#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xie392/CodeFrame.git"
},
"bugs": {
"url": "https://github.com/xie392/CodeFrame/issues"
},
"keywords": [
"chrome-extension",
"code-screenshot",
"code-beautify",
"syntax-highlighting",
"developer-tools"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives",
"lint:strict": "eslint src --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"prepare": "husky install"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0",
"@lezer/highlight": "^1.2.3",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@uiw/codemirror-theme-vscode": "^4.25.9",
"@uiw/codemirror-themes": "^4.25.9",
"@uiw/codemirror-themes-all": "^4.25.9",
"@uiw/react-codemirror": "^4.25.9",
"@use-gesture/react": "^10.3.1",
"@zumer/snapdom": "^2.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^26.0.3",
"lucide-react": "^1.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^17.0.2",
"shiki": "^4.0.2",
"tailwind-merge": "^3.5.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.0.263",
"@types/node": "^25.5.0",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"happy-dom": "^20.8.9",
"husky": "^9.0.11",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^7.3.1",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"rollup": "^4.60.0"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
}
}