-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.86 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
{
"name": "@zhengyuzi/rollup-build",
"version": "1.1.1",
"packageManager": "[email protected]",
"description": "An ES module bundler based on Rollup",
"author": "yu <[email protected]> (https://github.com/zhengyuzi)",
"license": "MIT",
"homepage": "https://github.com/zhengyuzi/rollup-build",
"repository": {
"type": "git",
"url": "https://github.com/zhengyuzi/rollup-build"
},
"bugs": {
"url": "https://github.com/zhengyuzi/rollup-build/issues"
},
"keywords": [
"rollup",
"bundler"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"robuild": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "esno src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"c12": "^1.11.2",
"citty": "^0.1.6",
"consola": "^3.2.3",
"filesize": "^10.1.6",
"fs-extra": "^11.2.0",
"gzip-size": "^7.0.0",
"mlly": "^1.7.1",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.5.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"esno": "^4.7.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}