-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.2 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@modulify/pkg",
"type": "module",
"license": "ISC",
"version": "1.0.1",
"description": "Utils for working with nodejs packages worktree",
"author": "zaytsev.modulify@gmail.com",
"contributors": [
"Zaitsev Kirill <zaytsev.cmath10@gmail.com>"
],
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs",
"default": "./dist/*.mjs"
}
},
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"read": [
"./dist/read.d.ts"
],
"update": [
"./dist/update.d.ts"
],
"walk": [
"./dist/walk.d.ts"
]
}
},
"files": [
"dist",
"types",
"README.md"
],
"dependencies": {
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
"glob": "^11.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/node": "^20.17.11",
"@vitest/coverage-istanbul": "2.1.8",
"@vitest/ui": "2.1.8",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
},
"packageManager": "yarn@4.6.0",
"scripts": {
"build": "vite build",
"eslint": "eslint src tests types",
"test": "vitest --run",
"test:coverage": "vitest run --coverage",
"test:coverage:html": "vitest run --coverage --reporter=html --outputFile.html=./reports/html/report.html"
},
"keywords": [
"workspace",
"worktree",
"package.json",
"monorepo",
"utilities",
"toolkit",
"workspace-tool",
"update",
"read",
"walk",
"nested-packages",
"packages-structure",
"modules"
],
"homepage": "https://github.com/modulify/pkg#readme",
"repository": {
"type": "git",
"url": "https://github.com/modulify/pkg.git"
},
"bugs": {
"url": "https://github.com/modulify/pkg/issues"
}
}