resolve-pkglock 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "resolve-pkglock",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "A nodejs hook to resolve packages with pnpm-lock.yaml instead of symlinks",
6
+ "author": "Axel Meinhardt",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/ameinhardt/resolve-pkglock.git"
11
+ },
12
+ "keywords": [
13
+ "pnpm"
14
+ ],
15
+ "main": "./dist/index.js",
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "devDependencies": {
20
+ "@antfu/eslint-config": "^6.7.3",
21
+ "@pnpm/dependency-path": "^1001.1.8",
22
+ "@pnpm/lockfile.fs": "^1001.1.28",
23
+ "@pnpm/lockfile.utils": "^1004.0.0",
24
+ "@rollup/plugin-commonjs": "^29.0.0",
25
+ "@rollup/plugin-node-resolve": "^16.0.3",
26
+ "@rollup/plugin-typescript": "^12.3.0",
27
+ "@types/node": "^25.0.3",
28
+ "eslint": "^9.39.2",
29
+ "eslint-plugin-format": "^1.2.0",
30
+ "husky": "^9.1.7",
31
+ "rollup": "^4.55.1",
32
+ "typescript": "^5.9.3"
33
+ },
34
+ "scripts": {
35
+ "lint": "eslint --fix --ext .js,.ts,.json .",
36
+ "precommit": "lint-staged",
37
+ "build": "rollup -c",
38
+ "clean": "git clean -xdfe node_modules"
39
+ }
40
+ }