Files
authentication_provider_oidc/package.json
T
Sebastian 92cb78e123
Build Test / test (pull_request) Successful in 39s
JS Unit Tests / test (pull_request) Successful in 41s
PHP Integration Tests / Integration Tests (pull_request) Successful in 57s
PHP Unit Tests / test (pull_request) Successful in 1m11s
Update dependency typescript to ~5.9.0
2026-07-25 23:52:08 +00:00

31 lines
1.0 KiB
JSON

{
"name": "@ktrix/authentication-provider-oidc",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build --mode production --config vite.config.ts",
"dev": "vite build --mode development --config vite.config.ts",
"watch": "vite build --mode development --watch --config vite.config.ts",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"test": "vitest run --config tests/js/vitest.config.ts",
"test:unit": "vitest run --config tests/js/vitest.config.ts",
"test:watch": "vitest watch --config tests/js/vitest.config.ts",
"test:coverage": "vitest run --coverage --config tests/js/vitest.config.ts"
},
"dependencies": {
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.0",
"typescript": "~5.9.0",
"vite": "^6.0.1",
"vue-tsc": "^2.1.10",
"@vitest/coverage-v8": "^4.1.6",
"@vue/test-utils": "^2.4.10",
"jsdom": "^29.1.1",
"vitest": "^4.1.6"
}
}