-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
110 lines (110 loc) · 3.11 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "adze",
"description": "A universal, modern, and extendable logging library for JavaScript and TypeScript.",
"version": "2.0.0",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.19.0"
},
"directories": {
"doc": "docs"
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.prod.json && tsc-alias && rm -f ./dist/demo_funcs.js && rm -f ./dist/demo_funcs.d.ts",
"build:demo": "tsc --project tsconfig.prod.json && tsc-alias",
"clean": "rm -rf ./dist",
"docs:build": "vuepress build docs",
"docs:clean-dev": "vuepress dev docs --clean-cache",
"docs:dev": "vuepress dev docs",
"docs:update-package": "npx vp-update",
"predemo:browser": "npm run build:demo",
"demo:browser": "http-server -o -p 8082",
"predemo:node": "npm run build:demo",
"demo:node": "tsx src/demo_funcs.ts --project tsconfig.json",
"demo:bun": "bun src/demo_funcs.ts",
"predemo:deno": "npm run build:demo",
"demo:deno": "deno --allow-env dist/demo_funcs.js",
"lint": "prettier ./src --check && eslint .",
"lint:fix": "prettier ./src --write && eslint . --fix",
"test": "vitest",
"test:ui": "vitest --ui --disable-console-intercept",
"prepare": "husky",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adzejs/adze.git"
},
"keywords": [
"typescript",
"logger",
"javascript",
"isomorphic",
"node",
"browser"
],
"author": "Andrew Stacy <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adzejs/adze/issues"
},
"homepage": "https://adzejs.com",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/jsdom": "^21.1.7",
"@types/ungap__structured-clone": "1.2.0",
"@vitest/ui": "^2.0.5",
"@vuepress/bundler-vite": "^2.0.0-rc.7",
"@vuepress/plugin-markdown-container": "^2.0.0-rc.42",
"@vuepress/theme-default": "^2.0.0-rc.11",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"happy-dom": "^15.7.3",
"http-server": "^14.1.1",
"husky": "^9.1.5",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.2",
"size-limit": "^11.1.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"vitest": "^2.0.4",
"vue": "^3.4.0",
"vuepress": "^2.0.0-rc.7",
"vuepress-plugin-search-pro": "^2.0.0-rc.52"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@ungap/structured-clone": "1.2.0",
"date-fns": "^3.6.0",
"picocolors": "1.1.1"
},
"size-limit": [
{
"path": "dist/index.js"
}
],
"release": {
"branches": [
"master"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}