-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.81 KB
/
package.json
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
{
"name": "@nextcloud/vite-config",
"description": "Shared Vite configuration for Nextcloud apps and libraries",
"author": {
"name": "Ferdinand Thiessen",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/nextcloud/nextcloud-vite-config/issues"
},
"homepage": "https://github.com/nextcloud/nextcloud-vite-config",
"license": "AGPL-3.0-or-later",
"version": "2.2.2",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"build:doc": "typedoc --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"dev": "tsc --watch",
"lint": "eslint lib",
"lint:fix": "eslint --fix lib",
"test": "vitest run",
"test:coverage": "vitest run --coverage.enabled --coverage.all"
},
"peerDependencies": {
"browserslist": ">=4.0",
"sass": ">=1.60",
"vite": "^4 || ^5"
},
"dependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@vitejs/plugin-vue": "^5.2.1",
"browserslist-to-esbuild": "^2.1.1",
"magic-string": "^0.30.17",
"rollup-plugin-corejs": "^1.0.1",
"rollup-plugin-esbuild-minify": "^1.2.0",
"rollup-plugin-license": "^3.5.3",
"rollup-plugin-node-externals": "^7.1.3",
"spdx-expression-parse": "^4.0.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-node-polyfills": "^0.22.0"
},
"devDependencies": {
"@nextcloud/eslint-config": "^8.4.1",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vite": "^5.4.1",
"vitest": "^2.0.2"
},
"files": [
"dist/",
"LICENSES",
"banner-template.txt"
],
"engines": {
"node": "^20",
"npm": "^10"
},
"eslintConfig": {
"extends": "@nextcloud/eslint-config/typescript"
}
}