-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
{
"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"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/chrome": "^0.0.268",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^24.0.0",
"prettier": "^3.7.4",
"typescript": "^5.3.3",
"vite": "^7.3.1",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^4.0.16"
},
"dependencies": {
"dexie": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}