-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "@pnpm/meta-updater",
"version": "2.0.3",
"description": "Keeps meta files up-to-date in a monorepo",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": "lib/cli.js",
"type": "module",
"files": [
"lib",
"!*.map"
],
"scripts": {
"prepublishOnly": "pnpm run compile",
"compile": "rimraf lib && tsc",
"test": "pnpm run compile && NODE_OPTIONS=--experimental-vm-modules jest --verbose=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/meta-updater.git"
},
"keywords": [],
"engines": {
"node": ">=18.12.0"
},
"author": "Zoltan Kochan <[email protected]> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/meta-updater/issues"
},
"homepage": "https://github.com/pnpm/meta-updater#readme",
"dependencies": {
"@pnpm/find-workspace-dir": "^7.0.0",
"@pnpm/logger": "^5.0.0",
"@pnpm/types": "^11.0.0",
"@pnpm/workspace.find-packages": "^4.0.0",
"@pnpm/workspace.read-manifest": "^2.2.0",
"load-json-file": "^7.0.1",
"meow": "^11.0.0",
"print-diff": "^2.0.0",
"ramda": "^0.30.0",
"write-json-file": "^5.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@types/ramda": "^0.30.0",
"execa": "^9.0.0",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"tempy": "^3.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}