28 lines
1.1 KiB
JSON
28 lines
1.1 KiB
JSON
{
|
|
"name": "nextcloud-ui",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Nextcloud Server Vue 3 UI",
|
|
"license": "AGPL-3.0-or-later",
|
|
"author": "Nextcloud GmbH and Nextcloud contributors",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "NODE_ENV=development vite build --mode development",
|
|
"lint": "eslint --suppressions-location ../eslint-baseline.json --no-error-on-unmatched-pattern ./apps/*/ ./core/",
|
|
"lint:fix": "eslint --suppressions-location ../eslint-baseline.json --fix --no-error-on-unmatched-pattern ./apps/*/ ./core/",
|
|
"test": "vitest -c ../../vitest.config.ts run",
|
|
"test:coverage": "vitest -c ../../vitest.config.ts run --coverage --reporter=default",
|
|
"test:update-snapshots": "vitest -c ../../vitest.config.ts run --update",
|
|
"test:watch": "vitest -c ../../vitest.config.ts watch",
|
|
"watch": "NODE_ENV=development vite build --mode development --watch"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"engines": {
|
|
"node": "^22.0.0",
|
|
"npm": "^10.5.0"
|
|
}
|
|
}
|