-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "find-workspaces",
"version": "0.3.1",
"keywords": [
"workspaces",
"packages",
"monorepo",
"yarn",
"npm",
"pnpm",
"lerna",
"bolt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joshuajaco/find-workspaces.git"
},
"license": "MIT",
"exports": "./dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"CHANGELOG.md"
],
"scripts": {
"build": "rm -rf dist && tsc",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "eslint --ignore-path .gitignore --max-warnings 0 .",
"prepublishOnly": "pnpm build",
"test": "nyc -r=lcov -r=text node --trace-warnings -r ts-node/register --test \"**/*.test.ts\""
},
"dependencies": {
"fast-glob": "^3.3.2",
"pkg-types": "^1.2.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/node": "^20.16.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}