-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
81 lines (81 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
78
79
80
81
{
"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"
],
"bin": "./dist/cli.js",
"imports": {
"typescript": "./src/local-typescript-loader.ts"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsx src/cli.ts --minify --target node18",
"test": "pnpm build && tsx tests/index.ts",
"lint": "lintroll --cache --node --ignore-pattern tests/fixture-package .",
"type-check": "tsc",
"prepack": "pnpm build && clean-pkg-json"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"typescript": "^4.1 || ^5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/pluginutils": "^5.1.4",
"esbuild": "^0.24.2",
"magic-string": "^0.30.17",
"rollup": "^4.29.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.5",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"execa": "9.3.0",
"fs-fixture": "^2.6.0",
"get-node": "^15.0.1",
"get-tsconfig": "^4.8.1",
"kolorist": "^1.8.0",
"lintroll": "^1.11.0",
"manten": "^1.3.0",
"outdent": "^0.8.0",
"react": "^18.3.1",
"rollup-plugin-dts": "6.1.1",
"tsx": "^4.19.2",
"type-fest": "^4.30.2",
"typescript": "^5.7.2"
}
}