-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
{
"name": "cli-er",
"version": "0.19.0",
"description": "Tool for building advanced cli applications",
"repository": "github:carloscortonc/cli-er",
"author": "Carlos Cortón Cobas <carloscortoncobas98@gmail.com>",
"homepage": "https://github.com/carloscortonc/cli-er#readme",
"bugs": "https://github.com/carloscortonc/cli-er/issues",
"license": "MIT",
"keywords": [
"cli",
"command",
"nodejs",
"parser"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rimraf dist && npx tsup && node ./scripts/fix-types.js",
"smoke-test": "cd test/smoke && node cjs/index.cjs && node mjs/index.mjs && ts-node-transpile-only ts/index.ts",
"types-test": "tstyche",
"test": "npx tsc && jest --silent && npm run smoke-test",
"format": "prettier --write ."
},
"dependencies": {},
"devDependencies": {
"@saithodev/semantic-release-backmerge": "^2.1.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.13.0",
"@types/jest": "^28.0.0",
"@types/node": "20.19.4",
"jest": "29.4.0",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"ts-jest": "29.4.0",
"ts-node": "^10.9.1",
"tstyche": "4.3.0",
"tsup": "8.5.0",
"typescript": "5.9.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}