-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.74 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@dephub/write",
"type": "module",
"version": "1.0.2",
"description": "File writing utility with automatic directory creation for Node.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"bin": {
"write": "./dist/cli.js"
},
"scripts": {
"prepublishOnly": "pnpm lint && pnpm check-types && pnpm build",
"release": "pnpm publish",
"docs": "lineo md 'src/**/*.ts' --outFile code.md --outDir temp",
"check-types": "tsc --noEmit --skipLibCheck",
"lint": "eslint . --fix --max-warnings 0",
"fmt": "prettier --write .",
"clean": "rm -rf dist",
"build": "vite build",
"dev": "vite build -w --mode development"
},
"keywords": [
"file",
"write",
"filesystem",
"typescript",
"node",
"esm",
"utility",
"directory",
"creation",
"dephub"
],
"author": {
"name": "Estarlin R",
"email": "dev@estarlincito.com",
"url": "https://estarlincito.com"
},
"engines": {
"node": ">=22.5.0"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"license": "MIT",
"homepage": "https://github.com/dephub-js/write#readme",
"repository": {
"type": "git",
"url": "https://github.com/dephub-js/write.git"
},
"bugs": {
"url": "https://github.com/dephub-js/write/issues"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.30.3",
"dependencies": {
"@dephub/command": "^1.0.1",
"@dephub/logger": "^1.2.0"
},
"devDependencies": {
"@dephub/eslint-ts": "^1.0.2",
"@dephub/glob": "^1.0.2",
"@dephub/path": "^1.0.2",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}