-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 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
{
"name": "rollup-plugin-extra-node-modules",
"version": "0.0.3",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"dev": "pnpm build --sourcemap --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"test": "vitest"
},
"keywords": [
"node modules",
"components",
"libs",
"react",
"modules",
"extract",
"rollup",
"rollup-plugin"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^11.0.3",
"@types/invariant": "^2.2.36",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"@types/normalize-path": "^3.0.1",
"@types/semver": "^7.5.4",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"execa": "^5.1.1",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"normalize-path": "^3.0.0",
"semver": "^7.5.4",
"ts-dedent": "^2.2.0"
},
"peerDependencies": {
"rollup": "^4.2.0"
},
"repository": {
"url": "https://github.com/xiaosen7/rollup-plugin-extra-node-modules/tree/main"
},
"files": [
"dist",
"README.md"
]
}