-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "logsets",
"version": "1.3.31",
"description": "Nodejs terminal application output colorized enhancement component",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"homepage": "https://zhangfisher.github.io/logsets/",
"types": "./src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"release": "nrm use npm && npm version patch --commit-hooks=false && npm run build && npm publish",
"dev:docs": "docsify serve docs",
"prepare": "husky install",
"commit": "git add . && git cz",
"version": "conventional-changelog -p angular -i ./docs/CHANGELOG.md -s -r 0 && git add ./docs/CHANGELOG.md",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"publish:all": "changeset version && changeset publish"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./utils": {
"import": "./dist/utils.mjs",
"require": "./dist/utils.cjs"
}
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://gitee.com/zhangfisher/logsets.git"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.17.0",
"ansicolor": "^1.1.100",
"core-js": "^3.21.0",
"flex-tools": "1.5.9"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.2",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/cz-commitlint": "^17.4.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"husky": "^8.0.3",
"rollup": "^2.70.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^7.0.2",
"ts-essentials": "^9.3.0",
"type-fest": "^3.5.3",
"vitepress": "^1.5.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"pnpm": {
"enable-pre-post-scripts": true
},
"packageManager": "pnpm@9.0.0"
}