-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.69 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
{
"name": "faf-chrome-extension",
"version": "1.7.0",
"overrides": {
"flatted": "3.4.2"
},
"description": "Stack⚡️Grabber - Chrome extension for developers. Generates .faf.txt reports from GitHub, GitLab, StackBlitz, and code editors.",
"type": "module",
"private": true,
"scripts": {
"dev": "vite build --mode development --watch",
"build": "vite build --config vite.content.config.ts && vite build --config vite.popup.config.ts && vite build --config vite.sw.config.ts",
"build:prod": "NODE_ENV=production vite build --config vite.content.config.ts && NODE_ENV=production vite build --config vite.popup.config.ts && NODE_ENV=production vite build --config vite.sw.config.ts",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --apply src/",
"format": "biome format --write src/",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest --run",
"clean": "rm -rf dist/ coverage/",
"validate": "npm run typecheck && npm run lint && npm run test:run",
"package": "npm run build:prod && node scripts/deploy.js validate && cd dist && zip -r ../faf-extension-v$(node -p \"require('./package.json').version\").zip .",
"package:dev": "npm run build && node scripts/deploy.js validate && cd dist && zip -r ../faf-extension-dev.zip .",
"deploy:dev": "node scripts/deploy.js deploy development",
"deploy:staging": "node scripts/deploy.js deploy staging",
"deploy:prod": "node scripts/deploy.js deploy production",
"perf": "node scripts/performance-test.js",
"perf:build": "node scripts/performance-test.js build",
"perf:size": "node scripts/performance-test.js size",
"setup": "chmod +x scripts/*.sh && ./scripts/setup-dev-env.sh",
"pre-commit": "./.git/hooks/pre-commit",
"ci": "npm run validate && npm run perf",
"security": "npm audit --audit-level high && node scripts/security-check.js",
"release:patch": "npm version patch && npm run deploy:prod",
"release:minor": "npm version minor && npm run deploy:prod",
"release:major": "npm version major && npm run deploy:prod"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tsconfig/svelte": "^5.0.5",
"@types/chrome": "^0.0.254",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"jsdom": "^26.1.0",
"svelte": "^5.54.1",
"svelte-check": "^4.3.1",
"typescript": "^5.3.0",
"vite": "^8.0.1",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@faf/engine": "file:vendor/faf-engine-3.1.0.tgz"
}
}