-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.19 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
76
77
78
79
80
81
82
83
84
{
"type": "module",
"name": "monopkg",
"version": "0.5.1",
"description": "A simple, yet beautiful monorepo package manager.",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"monopkg": "bin/monopkg.js",
"mpkg": "bin/monopkg.js",
"bpkg": "bin/bpkg.js"
},
"files": [
"bin",
"dist"
],
"directories": {
"bin": "bin",
"dist": "dist"
},
"scripts": {
"dev": "bun run clean && bun run template && tsdown --watch",
"build": "bun run clean && bun run template && tsdown",
"clean": "rimraf dist && mkdirp dist",
"format": "prettier --write ./src",
"template": "tar -cf ./dist/templates.tar.tgz ./templates/**",
"prepublish": "bun run format && bun run build && bun run template && publint",
"docs:dev": "vitepress dev docs --port 3636",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@beerush/utils": "^0.4.0",
"@clack/prompts": "^0.9.1",
"commander": "^13.1.0",
"esbuild-raw-plugin": "^0.1.1",
"glob": "^11.0.3",
"tar": "^7.4.3"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nolebase/vitepress-plugin-meta": "^2.18.0",
"@types/bun": "^1.2.0",
"@types/degit": "^2.8.6",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"publint": "^0.3.2",
"rimraf": "^6.0.1",
"tsdown": "^0.15.9",
"typescript": "^5.7.3",
"vitepress": "^1.6.3"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/beerush-id/monopkg.git"
},
"keywords": [
"pm",
"monorepo",
"package",
"manager"
],
"author": "Nanang Mahdaen El Agung <mahdaen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/beerush-id/monopkg/issues"
},
"homepage": "https://github.com/beerush-id/monopkg#readme"
}