-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 2.81 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
111
112
{
"name": "@abmao/pkgs",
"version": "2.3.3",
"packageManager": "[email protected]",
"description": "Simple monorepo combined with pnpm",
"author": "mawencan",
"license": "MIT",
"homepage": "https://github.com/hengshanMWC/pkgs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hengshanMWC/pkgs.git"
},
"bugs": {
"url": "https://github.com/hengshanMWC/pkgs/issues"
},
"keywords": [
"monorepo",
"packages",
"yarn",
"npm",
"ni",
"pnpm",
"pnpm-workspace",
"publish",
"version"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"access": "public",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"pkgs": "dist/bin/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"init": "pnpm i && npm run prepare",
"commit": "cz",
"build:unbuild": "unbuild",
"build": "esno ./scripts/build.ts",
"release": "esno ./scripts/release.ts",
"prepare": "husky install",
"lint": "eslint --ext=js,ts,json,md .",
"lint:fix": "eslint --fix --ext=js,ts,json,md .",
"test": "vitest",
"test:cov": "vitest --coverage",
"test:bin": "esno ./src/bin/index.ts -h",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"dependencies": {
"@abmao/bump": "^0.0.1",
"@abmao/forb": "^2.0.5",
"@antfu/ni": "^0.21.8",
"colors": "^1.4.0",
"commander": "^10.0.1",
"import-local": "^3.1.0",
"js-yaml": "^4.1.0",
"load-code": "2.1.1",
"npmlog": "^7.0.1",
"plugin-group": "^1.0.6",
"semver": "^7.5.2",
"simple-git": "^3.19.1"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.43.1",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@ts-type/package-dts": "^2.0.8",
"@types/fs-extra": "^11.0.1",
"@types/import-local": "^3.1.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.195",
"@types/npmlog": "^4.1.4",
"@types/semver": "^7.5.0",
"@vitest/coverage-v8": "^0.32.0",
"c8": "^7.11.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.51.0",
"esno": "^0.14.1",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"husky": "^7.0.4",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0",
"vitepress": "1.0.0-beta.5",
"vitest": "^0.32.0"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": "pnpm lint:fix"
}
}