-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "orgpulse",
"version": "0.1.0",
"description": "Diagnose your Salesforce org's performance from a single Scale Center screenshot.",
"type": "module",
"scripts": {
"dev": "vite --config vite.config.public.js",
"dev:local": "vite --config vite.config.local.js",
"build": "vite build --config vite.config.public.js",
"build:public": "vite build --config vite.config.public.js",
"build:local": "vite build --config vite.config.local.js",
"preview": "vite preview --config vite.config.public.js",
"lint": "eslint src/",
"format": "prettier --write src/",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/rammc/orgpulse.git"
},
"keywords": [
"salesforce",
"scale-center",
"performance",
"diagnostics",
"ocr"
],
"author": "Christopher Ramm",
"license": "MIT",
"dependencies": {
"tesseract.js": "^5.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"eslint": "^9.14.0",
"prettier": "^3.4.2",
"vite": "^6.3.2",
"vitest": "^4.1.4"
}
}