-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "codefetch",
"version": "1.5.0",
"description": "Fetches all files in the current directory and outputs them in a Markdown file.",
"repository": "regenrek/codefetch",
"license": "MIT",
"type": "module",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"codefetch": "./dist/cli.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --cache . && prettier -c src test",
"start": "tsx src/cli.ts",
"lint:fix": "eslint --cache . --fix && prettier -c src test -w",
"release": "npm test && npm run build && npm publish",
"test": "npm run lint && npm run test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck",
"prepack": "unbuild",
"docs": "DEV=true nuxi dev docs",
"docs:build": "nuxi build docs",
"docs:prepare": "nuxt-component-meta docs",
"prerelease": "npm version prerelease --preid=edge",
"publish:edge": "npm publish --tag edge"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"eslint-config-unjs": "^0.4.2",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"unbuild": "3.2.0",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"dependencies": {
"c12": "^2.0.1",
"consola": "^3.3.3",
"defu": "^6.1.4",
"fast-glob": "^3.3.3",
"ignore": "^7.0.0",
"js-tiktoken": "^1.0.16",
"mri": "^1.2.0",
"pathe": "^2.0.1"
}
}