-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.31 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
{
"name": "@node-kit/pnpm-workspace-root",
"description": "A simple utility to get the pnpm workspace root",
"version": "3.1.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm-bundler.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.esm-bundler.js",
"require": "./dist/index.cjs.js",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"directories": {
"bin": "bin",
"dist": "dist",
"src": "src"
},
"files": [
"bin",
"dist",
"typings"
],
"dependencies": {
"@node-kit/extra.fs": "workspace:*",
"@pnpm/error": "^5.0.2",
"find-up": "^6.3.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.36.0",
"eslint": "^8.44.0",
"prettier": "^2.8.8"
},
"sideEffects": false,
"keywords": [
"node-kit",
"workspace",
"pnpm-workspace",
"workspace-root"
],
"license": "MIT",
"author": "saqqdy <https://github.com/saqqdy>",
"homepage": "https://github.com/saqqdy/node-kit/tree/master/packages/pnpm-workspace-root#readme",
"bugs": {
"url": "https://github.com/saqqdy/node-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/node-kit.git",
"directory": "packages/pnpm-workspace-root"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}