-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 KB
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
{
"name": "loglayer-plugin-boilerplate",
"description": "Boilerplate template for creating plugins for LogLayer.",
"version": "0.0.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": "loglayer/loglayer-plugin-boilerplate.git",
"author": "Theo Gravity <theo@suteki.nu>",
"keywords": [
"logging",
"log",
"loglayer",
"plugin"
],
"scripts": {
"build": "tsdown src/index.ts",
"test": "vitest --run",
"clean": "rm -rf .turbo node_modules dist",
"lint": "biome check --write --unsafe src && biome format src --write && biome lint src --fix",
"verify-types": "tsc --noEmit",
"livetest": "tsx src/__tests__/livetest.ts",
"syncpack:update": "syncpack update && syncpack fix-mismatches && npm i",
"syncpack:format": "syncpack format",
"syncpack:lint": "syncpack lint"
},
"dependencies": {
"@loglayer/plugin": "2.2.7"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/node": "24.10.4",
"loglayer": "8.4.0",
"lefthook": "2.0.13",
"syncpack": "13.0.4",
"tsdown": "0.18.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.16"
},
"bugs": "https://github.com/loglayer/loglayer-plugin-boilerplate/issues",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"homepage": "https://loglayer.dev"
}