-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.03 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.03 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "planmypeak-importer",
"version": "1.11.80",
"description": "PlanMyPeak Importer - Browser Extension for Workout Library Access",
"type": "module",
"scripts": {
"dev": "npm run dev:local",
"dev:local": "VITE_PLANMYPEAK_TARGET=local vite",
"dev:prod": "VITE_PLANMYPEAK_TARGET=production vite",
"prebuild": "node scripts/increment-version.cjs",
"prebuild:local": "node scripts/increment-version.cjs",
"build": "npm run build:prod",
"build:bundle": "tsc && vite build",
"build:prod": "npm run build:bundle",
"build:local": "VITE_PLANMYPEAK_TARGET=local npm run build:bundle",
"package": "npm run build && ./scripts/package-for-distribution.sh",
"package:release": "npm run build:bundle && ./scripts/package-release-artifact.sh",
"preview": "vite preview",
"lint": "eslint . --max-warnings 20",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:components": "vitest run tests/components",
"test:e2e": "playwright test",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardoarantes/cycling_coach_browser_plugin.git"
},
"keywords": [
"chrome-extension",
"trainingpeaks",
"cycling",
"workout"
],
"author": "Eduardo Arantes",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/eduardoarantes/cycling_coach_browser_plugin/issues"
},
"homepage": "https://github.com/eduardoarantes/cycling_coach_browser_plugin#readme",
"dependencies": {
"@crxjs/vite-plugin": "^2.3.0",
"@floating-ui/react": "^0.27.18",
"@tanstack/react-query": "^5.90.21",
"lucide-react": "^0.575.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.0",
"@tanstack/react-query-devtools": "^5.91.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.1.36",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.8",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.0",
"vitest": "^4.1.8"
}
}