-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.9 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.9 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
{
"name": "workspace-meta",
"version": "0.1.5",
"description": "A CLI tool to synchronize and manage metadata files across packages within a monorepo",
"keywords": [
"monorepo",
"workspace",
"metadata",
"sync",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kingston/workspace-meta"
},
"license": "MIT",
"author": "Kingston Tam",
"sideEffects": false,
"type": "module",
"imports": {
"#src/*": {
"development": "./src/*",
"default": "./dist/*"
}
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"bin": {
"workspace-meta": "./bin/workspace-meta.js"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx -C development src/cli.ts",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier -w .",
"release": "pnpm build && pnpm changeset publish",
"start": "node bin/workspace-meta.js",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fast-glob": "^3.3.3",
"find-workspaces": "^0.3.1",
"jiti": "^2.4.2",
"micromatch": "^4.0.8",
"pkg-types": "^2.1.0"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@ktam/lint-node": "0.5.1",
"@tsconfig/node20": "^20.1.6",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.19.17",
"eslint": "9.36.0",
"memfs": "4.43.0",
"prettier": "3.6.2",
"tsx": "4.20.5",
"typescript": "5.8.3",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.17.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}