-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.56 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
{
"name": "@slipmatio/logger",
"version": "0.2.0",
"type": "module",
"description": "Better console logging with TypScript support",
"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"
}
},
"author": {
"name": "Ville Säävuori",
"email": "ville@unessa.net"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"test": "vitest --coverage",
"test-e2e": "playwright test --ui",
"test-e2e-ci": "playwright test"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGES.md"
],
"keywords": [
"logger",
"logging",
"console",
"vue",
"slipmatio",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@playwright/test": "1.48.2",
"@types/node": "22.8.6",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/coverage-v8": "2.1.4",
"@vue/test-utils": "2.4.6",
"happy-dom": "15.8.0",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.4",
"vue": "3.5.12",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"vue": "3"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slipmatio/logger.git"
},
"bugs": {
"url": "https://github.com/slipmatio/logger/issues"
},
"homepage": "https://github.com/slipmatio/logger"
}