-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 978 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 978 Bytes
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
{
"name": "nite",
"version": "0.1.0",
"description": "",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "rimraf dist && rollup -c"
},
"bin": {
"nite": "./bin/nite.js"
},
"keywords": [],
"author": "Codefoxdev",
"license": "MIT",
"dependencies": {
"@rollup/pluginutils": "^5.1.0",
"cac": "^6.7.14",
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"es-module-lexer": "^1.4.1",
"esbuild": "^0.19.11",
"magic-string": "^0.30.5",
"mlly": "^1.5.0",
"rollup": "^4.9.5",
"threadbus": "link:../threadbus"
},
"engines": {
"node": "^18.19.0 || >=20.0.0"
},
"exports": {
".": "./dist/index.js",
"./loader": "./dist/loader/register.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}