-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.fixed
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json.fixed
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "prompt-manager",
"version": "0.1.0",
"description": "Browser extension for managing and syncing prompts with OneDrive",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"build": "vite build",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"test": "vitest",
"postbuild": "node scripts/fix-dist-html.js"
},
"devDependencies": {
"@testing-library/react": "^14.3.1",
"@types/chrome": "^0.0.268",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"fake-indexeddb": "^6.2.5",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^4.0.16",
"jsdom": "^24.1.3"
},
"dependencies": {
"dexie": "^4.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}