-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
53
54
{
"name": "guidemode",
"version": "0.2.1",
"description": "Command line interface for GuideMode",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"bin": {
"guidemode": "./dist/esm/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/guidemode/cli.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs && pnpm run build:cjs-package",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"dev": "tsc --watch",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "biome lint src --diagnostic-level=error",
"lint:all": "biome lint src",
"lint:fix": "biome lint --write src",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@guidemode/types": "^0.2.1",
"@guidemode/session-processing": "^0.2.1",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"open": "^10.2.0"
},
"devDependencies": {
"@types/node": "^22.10.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"keywords": ["ai", "guide", "cli"]
}