Files
LUNA-Charts/packages/luna-charts/package.json
T
Ninosaurier a09d83fb53 fix(deps): pin playwright to 1.62.1 and sync docker test image
Playwright was previously pinned with a caret range (^1.61.1), which
allowed pnpm to silently resolve a newer minor version after the
lockfile was regenerated. This caused a version mismatch with the
Docker test image, which still referenced 1.61.1.

- packages/luna-charts/package.json: pin playwright to 1.62.1 exactly
- Dockerfile.test: bump base image to v1.62.1-noble to match
2026-08-02 00:45:30 +02:00

62 lines
1.8 KiB
JSON

{
"name": "luna-charts",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/luna-charts/luna-charts.esm.js",
"exports": {
".": {
"import": "./dist/luna-charts/luna-charts.esm.js",
"require": "./dist/luna-charts/luna-charts.cjs.js"
},
"./my-component": {
"import": "./dist/components/my-component.js",
"types": "./dist/components/my-component.d.ts"
},
"./loader": {
"types": "./loader/index.d.ts",
"import": "./loader/index.js",
"require": "./loader/index.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stenciljs/component-starter.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil-test --prod",
"test:unit": "stencil-test --prod --project=unit",
"test:browser": "stencil-test --prod --project=browser",
"test:watch": "stencil-test --prod --watch",
"generate": "stencil generate",
"storybook": "storybook dev -p 6006 --no-open"
},
"devDependencies": {
"@oxc-parser/binding-linux-x64-gnu": "^0.141.0",
"@rolldown/binding-linux-x64-gnu": "^1.2.0",
"@stencil/core": "^4.43.5",
"@stencil/storybook-plugin": "^0.7.0",
"@stencil/vitest": "^1.8.3",
"@storybook/addon-docs": "^10.5.0",
"@storybook/addon-links": "^10.5.0",
"@types/node": "^22.13.5",
"@vitest/browser-playwright": "^4.0.0",
"axe-core": "^4.12.1",
"eslint-plugin-storybook": "10.5.0",
"playwright": "^1.62.1",
"storybook": "^10.5.0",
"vitest": "^4.0.0"
},
"license": "MIT"
}