-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 2.92 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
113
114
115
116
{
"name": "@comandeer/rollup-lib-bundler",
"version": "0.25.0",
"description": "Simple library bundler",
"type": "module",
"exports": {
".": {
"types": "./dist/rollup-lib-bundler.d.ts",
"import": "./dist/rollup-lib-bundler.mjs"
}
},
"engines": {
"node": ">=20.11.0"
},
"bin": {
"rlb": "bin/rlb.mjs"
},
"files": [
"bin",
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"build": "rlb",
"lint": "eslint \"./src\" \"./tests\"",
"lint-package": "publint",
"test": "c8 ava",
"version": "npm test && npm run build && npm run lint-package && git add -f bin/ dist/",
"postversion": "git rm -r --cached bin/ dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Comandeer/rollup-lib-bundler.git"
},
"keywords": [
"rollup",
"babel",
"library-bundler",
"bundler"
],
"author": "Comandeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Comandeer/rollup-lib-bundler/issues"
},
"homepage": "https://github.com/Comandeer/rollup-lib-bundler#readme",
"commitplease": {
"nohook": true,
"style": "angular",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": "\\S+.*"
},
"devDependencies": {
"@comandeer/eslint-config": "^0.15.0",
"@comandeer/rollup-lib-bundler": "^0.23.0",
"@types/babel__preset-env": "^7.9.7",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.11.0",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/sourcemap-validator": "^2.1.2",
"ava": "^6.1.3",
"c8": "^10.1.2",
"commitplease": "^3.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.11.1",
"execa": "^9.4.0",
"husky": "^9.1.6",
"mock-fs": "^5.3.0",
"publint": "^0.2.11",
"sinon": "^19.0.2",
"sourcemap-validator": "^2.1.0",
"tempy": "^3.1.0",
"tsx": "^4.19.1"
},
"dependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-syntax-import-assertions": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@comandeer/cli-spinner": "^1.0.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/plugin-virtual": "^3.0.2",
"chalk": "^5.3.0",
"globby": "^14.0.2",
"magic-string": "^0.30.11",
"pathe": "^1.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"semver": "^7.6.3",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}