-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.33 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "rollup-plugin-node-externals",
"version": "7.1.3",
"description": "Automatically declare NodeJS built-in modules and npm dependencies as 'external' in Rollup config",
"author": "Stephan Schreiber <[email protected]>",
"contributors": [
"Tomer Aberbach <[email protected]>",
"Elad Ossadon <[email protected]>"
],
"keywords": [
"rollup",
"vite",
"plugin",
"rollup-plugin",
"vite-plugin",
"external",
"externals",
"node",
"builtin",
"builtins",
"dependencies",
"devDependencies",
"peerDependencies",
"optionalDependencies",
"modules",
"monorepo"
],
"homepage": "https://github.com/Septh/rollup-plugin-node-externals#readme",
"repository": {
"type": "git",
"url": "https://github.com/Septh/rollup-plugin-node-externals"
},
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/Septh"
},
{
"type": "paypal",
"url": "https://paypal.me/septh07"
}
],
"license": "MIT",
"engines": {
"node": ">= 21 || ^20.6.0 || ^18.19.0"
},
"files": [
"dist",
"!dist/**/*.map"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"imports": {
"#package.json": "./package.json"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:dts": "tsc -p tsconfig.build.json --declaration --emitDeclarationOnly --removeComments false",
"watch": "tsc -p tsconfig.build.json -w",
"test": "ava",
"lint": "eslint source/index.ts",
"clean": "tsc -b tsconfig.build.json --declaration --clean",
"prepublishOnly": "npm run lint && npm run clean && npm run build && npm run build:dts"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@fast-check/ava": "^2.0.1",
"@septh/ts-run": "^1.0.2",
"@types/node": "^18.19.44",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"ava": "^6.1.0",
"eslint": "^9.9.0",
"fast-check": "^3.15.0",
"globals": "^14.0.0",
"rollup": "^4.9.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"rollup": "^3.0.0 || ^4.0.0"
},
"ava": {
"workerThreads": false,
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=@septh/ts-run"
]
}
}