-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2 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
{
"name": "pkgroll",
"version": "0.0.0-semantic-release",
"description": "Zero-config rollup bundler",
"keywords": [
"zero config",
"rollup",
"package.json",
"exports",
"esm",
"cjs",
"commonjs",
"typescript",
"declaration"
],
"license": "MIT",
"repository": "privatenumber/pkgroll",
"funding": "https://github.com/privatenumber/pkgroll?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"type": "module",
"bin": "./dist/cli.mjs",
"packageManager": "[email protected]",
"scripts": {
"build": "node src/cli.ts --minify --target node18",
"test": "pnpm build && node tests/index.ts",
"lint": "lintroll --cache --node --ignore-pattern tests/fixture-package .",
"type-check": "tsc",
"prepack": "pnpm build && clean-pkg-json"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.1",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"cjs-module-lexer": "^2.2.0",
"esbuild": "^0.26.0",
"magic-string": "^0.30.21",
"rollup": "^4.53.5",
"rollup-plugin-import-trace": "^1.0.1",
"rollup-pluginutils": "^2.8.2",
"yaml": "^2.8.2"
},
"peerDependencies": {
"typescript": "^4.1 || ^5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@jridgewell/trace-mapping": "^0.3.31",
"@types/node": "^24.12.0",
"@types/picomatch": "^4.0.2",
"@types/react": "^19.2.14",
"clean-pkg-json": "^1.3.0",
"cleye": "^2.2.1",
"empathic": "^2.0.0",
"estree-walker": "^3.0.3",
"execa": "9.6.1",
"fs-fixture": "^2.11.0",
"get-node": "^15.0.4",
"get-tsconfig": "^4.13.6",
"kolorist": "^1.8.0",
"lintroll": "^1.24.4",
"manten": "2.0.0",
"outdent": "^0.8.0",
"picomatch": "^4.0.3",
"react": "^19.2.4",
"rollup-plugin-dts": "github:privatenumber/rollup-plugin-dts#npm/master",
"type-fest": "^5.4.4",
"typescript": "^5.9.3"
}
}