-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.45 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
{
"bin": { "ubik": "./ubik.cli.mjs" },
"name": "@hackbg/ubik",
"type": "module",
"main": "ubik.mjs",
"version": "4.1.0",
"license": "AGPL-3.0-only",
"keywords": [ "typescript" ],
"homepage": "https://github.com/hackbg/ubik",
"repository": "hackbg/ubik",
"description": "Dual publish TypeScript to CJS and ESM with CTS/MTS typedefs, source maps and declaration maps. Plus, other goodies to stop the pain.",
"files": [ "README.md", "*.svg", "*.cjs", "*.mjs", "!*.test.mjs", "src/*.mjs", "!src/*.test.mjs", "docs/*" ],
"scripts": {
"release": "./ubik.cli.mjs release --access public --otp 123123",
"check": "tsc --noEmit",
"test": "time ./ubik.test.mjs",
"cov": "time c8 -x .fixtures -x '**/*.test.mjs' -r text -r html ./ubik.test.mjs",
"emit": "tsc --declaration --emitDeclarationOnly --declarationMap",
"clean": "find . \\( -name \\*.d.\\*ts -o -name \\*.d.\\*ts.map \\) ! -path '*/node_modules/*' -exec rm {} \\;"
},
"dependencies": {
"@hackbg/logs": "^2.1.0",
"@babel/parser": "^7.22.10",
"acorn": "^8.11.2",
"acorn-walk": "^8.3.0",
"astring": "^1.8.6",
"fast-glob": "^3.3.2",
"mkdirp": "^3.0.1",
"node-fetch": "^3.3.2",
"recast": "^0.23.4",
"resolve.exports": "^2.0.2",
"rimraf": "^5.0.5"
},
"devDependencies": {
"@types/node": "^20.10.3",
"c8": "^8.0.1",
"typescript": "~5.7.2"
}
}