-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "commandstruct",
"version": "0.3.0",
"description": "Type safe and modular CLIs with Sade",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc --noEmit && shx rm -rf dist && tsup src/index.ts --format esm,cjs --dts",
"release": "pnpm run build && changeset publish",
"watch": "vitest",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"command",
"cli",
"sade",
"hollywood-di",
"typescript"
],
"author": "Eric Afes <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eriicafes/commandstruct.git"
},
"bugs": {
"url": "https://github.com/eriicafes/commandstruct/issues"
},
"homepage": "https://github.com/eriicafes/commandstruct#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.4.2",
"@vitest/coverage-v8": "^1.2.2",
"shx": "^0.3.4",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^1.2.2"
},
"peerDependencies": {
"hollywood-di": ">= 0.5.2",
"sade": ">= 1.8.1"
}
}