-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2 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
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
{
"name": "azdo-npm-auth",
"version": "1.9.1",
"description": "Set up local authentication to Azure DevOps npm feeds",
"repository": {
"type": "git",
"url": "https://github.com/johnnyreilly/azdo-npm-auth"
},
"license": "MIT",
"author": {
"name": "John Reilly",
"email": "johnny_reilly@hotmail.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": "./bin/index.js",
"files": [
"bin/",
"lib/"
],
"scripts": {
"build": "tsup",
"format": "prettier .",
"knip": "knip",
"lint": "eslint . --max-warnings 0",
"prepare": "husky",
"release": "pnpm run build && changeset publish",
"start": "pnpm run build && node ./bin/index.js",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@azure/identity": "^4.13.1",
"@clack/prompts": "^1.5.1",
"chalk": "^5.6.2",
"ci-info": "^4.4.0",
"execa": "^9.6.1",
"zod": "^4.4.3",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/eslint-plugin": "^1.6.20",
"console-fail-test": "^0.6.1",
"eslint": "^10.5.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-package-json": "^0.89.4",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-regexp": "^3.1.0",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^3.1.0",
"knip": "^6.16.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.4",
"prettier-plugin-curly": "^0.4.1",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-sh": "^0.18.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=18.3.0"
},
"publishConfig": {
"provenance": true
}
}