nextcloud-paths/package.json

57 строки
1.4 KiB
JSON

{
"name": "@nextcloud/paths",
"version": "2.2.1",
"description": "Helper functions for working with paths in Nextcloud apps",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"dev": "vite --mode development build --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"keywords": [
"nextcloud",
"paths"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-paths#readme",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-paths"
},
"author": "Nextcloud GmbH and Nextcloud contributors",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/vite-config": "^2.2.2",
"@vitest/coverage-v8": "^2.1.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vitest": "^2.0.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"files": [
"dist",
"AUTHORS.md",
"CHANGELOG.md",
"README.md",
"LICENSE"
]
}