-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
80 lines (80 loc) · 1.82 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
{
"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 --noEmit",
"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.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/pluginutils": "^5.1.0",
"esbuild": "^0.23.0",
"magic-string": "^0.30.10",
"rollup": "^4.18.1"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@types/react": "^18.3.5",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"execa": "^9.3.0",
"fs-fixture": "^2.4.0",
"get-node": "^15.0.1",
"get-tsconfig": "^4.7.6",
"kolorist": "^1.8.0",
"lintroll": "^1.7.1",
"manten": "^1.3.0",
"outdent": "^0.8.0",
"react": "^18.3.1",
"rollup-plugin-dts": "6.1.1",
"tsx": "^4.16.2",
"type-fest": "^4.22.1",
"typescript": "^5.5.3"
}
}