-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "cjs-fixer",
"version": "1.0.0",
"description": "Fixes the exports of a commonjs module to be compatible with nodejs",
"main": "index.js",
"type": "module",
"author": "Mahmoud Ibrahiam",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.2.3",
"rollup": "^3.23.0",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^10.0.1"
},
"keywords": [
"cjs",
"fix",
"exports",
"build",
"typescript",
"commonjs"
],
"files": [
"build"
],
"bin": {
"cjs-fixer": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/remahmoud/cjs-fixer"
},
"homepage": "https://github.com/remahmoud/cjs-fixer#readme"
}