-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.12 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
{
"name": "@blgc/cli",
"version": "0.0.21",
"private": false,
"description": "Straightforward CLI to bundle Typescript libraries with presets, powered by Rollup and Esbuild",
"keywords": [],
"homepage": "https://builder.group/?source=package-json",
"bugs": {
"url": "https://github.com/builder-group/monorepo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/builder-group/monorepo.git"
},
"license": "MIT",
"author": "@bennobuilder",
"main": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"bin": {
"blgc": "./bin/run"
},
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"build": "shx rm -rf dist && tsc",
"clean": "shx rm -rf dist && shx rm -rf node_modules && shx rm -rf .turbo",
"install:clean": "pnpm run clean && pnpm install",
"lint": "eslint . --fix",
"publish:patch": "pnpm build && pnpm version patch && pnpm publish --no-git-checks --access=public",
"start:dev": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"update:latest": "pnpm update --latest"
},
"oclif": {
"bin": "blgc",
"commands": "./dist/commands",
"dirname": "blgc",
"topicSeparator": " ",
"topics": {
"bundle": {
"description": "Bundle packages"
}
}
},
"dependencies": {
"@oclif/core": "^4.0.34",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-html": "^1.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"chalk": "^4.1.2",
"dotenv": "^16.4.7",
"execa": "^8.0.1",
"figlet": "^1.8.0",
"lodash": "^4.17.21",
"maxmin": "^4.1.0",
"rollup": "^4.28.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.5.3",
"rollup-plugin-node-externals": "^5.1.3",
"rollup-plugin-postcss": "^4.0.2"
},
"devDependencies": {
"@blgc/config": "workspace:*",
"@types/figlet": "^1.7.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"type-fest": "^4.30.0"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"chalk",
"execa",
"rollup-plugin-node-externals"
]
}
}
}