-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vite-plugin-time-reporter",
"version": "2.3.0",
"description": "Time reporting for Vite project",
"scripts": {
"clean": "rimraf .eslintcache coverage dist pnpm-lock.yaml node_modules",
"build": "tsup-node",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"test": "vitest",
"coverage": "vitest run --coverage",
"ts-check": "tsc",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s format lint build ts-check coverage"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"keywords": [
"vite",
"vite-plugin",
"time",
"reporting",
"report",
"plugin",
"vitejs",
"awesome"
],
"author": {
"name": "Christopher Quadflieg",
"email": "[email protected]",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "https://github.com/Shinigami92/vite-plugin-time-reporter.git"
},
"bugs": "https://github.com/Shinigami92/vite-plugin-time-reporter/issues",
"license": "MIT",
"files": [
"dist",
"src",
"tsconfig.json"
],
"devDependencies": {
"@eslint-types/prettier": "~5.1.2",
"@eslint-types/typescript-eslint": "~6.16.0",
"@types/node": "~20.10.5",
"@typescript-eslint/eslint-plugin": "~6.16.0",
"@typescript-eslint/parser": "~6.16.0",
"@vitest/coverage-v8": "~1.1.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-define-config": "~2.1.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-prettier": "~5.1.2",
"npm-run-all": "~4.1.5",
"prettier": "3.1.1",
"prettier-plugin-organize-imports": "~3.2.4",
"rimraf": "~5.0.5",
"tsup": "~8.0.1",
"typescript": "~5.3.3",
"vite": "~5.0.10",
"vite-plugin-dts": "~3.7.0",
"vitest": "~1.1.0"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"pnpm": ">=8.6.0"
}
}