-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.92 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@smarlhens/npm-pin-dependencies",
"version": "0.9.0",
"description": "NPM tool to pin down versions of installed dependencies written in TypeScript.",
"keywords": [
"node",
"npm",
"yarn",
"dependency",
"dependencies",
"version",
"versions",
"pin",
"lock",
"typescript"
],
"homepage": "https://github.com/smarlhens/npm-pin-dependencies#readme",
"bugs": {
"url": "https://github.com/smarlhens/npm-pin-dependencies/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/smarlhens/npm-pin-dependencies.git"
},
"license": "MIT",
"author": {
"name": "Samuel MARLHENS",
"email": "samuel.marlhens@proton.me",
"url": "https://github.com/smarlhens"
},
"type": "module",
"exports": {
".": {
"types": "./dist/npd.d.ts",
"require": "./dist/lib/npd.cjs",
"import": "./dist/lib/npd.js"
}
},
"main": "./dist/lib/npd.cjs",
"module": "./dist/lib/npd.js",
"types": "./dist/npd.d.ts",
"bin": {
"npd": "./dist/bin/npd.js",
"npm-pin-dependencies": "./dist/bin/npd.js"
},
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup",
"dev": "node --experimental-specifier-resolution=node --loader ts-node/esm ./bin/npd.ts",
"lint": "npm run prettier:check",
"lint-staged": "lint-staged",
"precommit": "npm run lint-staged && npm run build",
"prepare": "husky",
"prettier:check": "prettier --check ./**/*.{ts,json,yml,md}",
"prettier:write": "prettier --write ./**/*.{ts,json,yml,md}",
"test": "vitest run",
"test:ci": "npm run test:coverage",
"test:coverage": "npm run test -- --coverage",
"test:watch": "vitest watch"
},
"dependencies": {
"@pnpm/lockfile-file": "8.1.6",
"@yarnpkg/lockfile": "1.1.0",
"@yarnpkg/parsers": "3.0.0",
"ajv": "8.12.0",
"chalk": "5.3.0",
"cli-table": "0.3.11",
"debug": "4.3.4",
"detect-indent": "7.0.1",
"find-up": "7.0.0",
"listr2": "8.0.2",
"semver": "7.5.4",
"update-notifier": "7.0.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@swc/core": "1.3.107",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/cli-table": "0.3.4",
"@types/debug": "4.1.12",
"@types/node": "18.19.14",
"@types/semver": "7.5.6",
"@types/update-notifier": "6.0.8",
"@types/yargs": "17.0.32",
"@types/yarnpkg__lockfile": "1.1.9",
"@vitest/coverage-v8": "1.2.2",
"execa": "8.0.1",
"husky": "9.0.10",
"knip": "4.3.0",
"lint-staged": "15.2.1",
"prettier": "3.2.4",
"rimraf": "5.0.5",
"sort-package-json": "2.7.0",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"tsup": "8.0.1",
"typescript": "5.3.3",
"vitest": "1.2.2"
},
"engines": {
"node": "^18.12.0 || ^20.0.0",
"npm": ">=8.0.0"
}
}