-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.35 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
{
"name": "my_pack_extension",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:planner-staging": "vite --mode staging --open /planner-staging.html",
"build": "tsc -b && vite build",
"build:debug": "node scripts/build-config.js development && tsc -b && vite build --mode development --minify=false --sourcemap=inline",
"build:prod": "node scripts/build-config.js production && tsc -b && vite build --mode production",
"build:staging": "node scripts/build-config.js staging && tsc -b && vite build --mode staging",
"build:analyze": "tsc -b && vite build --mode production",
"setup:env": "node scripts/build-config.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --ignore-path .eslintignore",
"lint:fix": "eslint . --ext ts,tsx --fix",
"test": "vitest",
"test:smoke": "playwright test",
"test:smoke:headed": "playwright test --headed",
"test:smoke:auth": "npm run build && node tests/authenticated-smoke.mjs",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"clean": "node -e \"const fs = require('fs'); if (fs.existsSync('dist')) fs.rmSync('dist', {recursive: true, force: true})\"",
"prebuild:prod": "npm run clean",
"postbuild:prod": "npm run package",
"package": "node -e \"const fs = require('fs'); const path = require('path'); const archiver = require('archiver'); const output = fs.createWriteStream('dist.zip'); const archive = archiver('zip'); output.on('close', () => console.log('Package created: dist.zip')); archive.on('error', (err) => { throw err; }); archive.pipe(output); archive.directory('dist/', false); archive.finalize();\""
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"cheerio": "^1.0.0",
"chroma-js": "^3.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"radix-ui": "^1.4.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@babel/plugin-transform-react-constant-elements": "^7.25.9",
"@babel/plugin-transform-react-inline-elements": "^7.25.9",
"@crxjs/vite-plugin": "^2.0.0-beta.32",
"@eslint/js": "^9.26.0",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.2.2",
"@types/chroma-js": "^3.1.2",
"@types/chrome": "^0.0.320",
"@types/node": "^25.6.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitejs/plugin-react": "^4.4.1",
"archiver": "^7.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.0.0",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^5.12.0",
"shadcn": "^4.2.0",
"tailwindcss": "^4.2.2",
"terser": "^5.36.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^6.3.5",
"vitest": "^4.1.2"
}
}