-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.63 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.63 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
{
"name": "@lpm-registry/cli",
"version": "0.9.0",
"description": "CLI for Licensed Package Manager",
"author": "LPM <hello@lpm.dev> (https://lpm.dev)",
"repository": {
"type": "git",
"url": "https://github.com/lpm-dev/cli"
},
"homepage": "https://lpm.dev",
"license": "ISC",
"keywords": [
"lpm",
"package-manager",
"registry",
"npm",
"private-packages"
],
"main": "index.js",
"bin": {
"lpm": "./bin/lpm.js"
},
"exports": {
".": "./index.js",
"./lib/*": "./lib/*"
},
"types": "./index.d.ts",
"sideEffects": false,
"files": [
"bin",
"lib",
"scripts",
"!lib/__tests__",
"index.js",
"index.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"prepare": "husky",
"postinstall": "node scripts/install-binary.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^11.1.0",
"conf": "^12.0.0",
"diff": "^8.0.2",
"inquirer": "^9.2.12",
"open": "^11.0.0",
"ora": "^8.2.0",
"semver": "^7.7.3",
"tar": "^7.5.2",
"update-notifier": "^7.3.1",
"xcode": "^3.0.1"
},
"optionalDependencies": {
"@lpm-registry/cli-darwin-arm64": "0.9.0",
"@lpm-registry/cli-darwin-x64": "0.9.0",
"@lpm-registry/cli-linux-x64": "0.9.0",
"@lpm-registry/cli-linux-arm64": "0.9.0",
"@lpm-registry/cli-win32-x64": "0.9.0",
"keytar": "^7.9.0"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^22.0.0",
"husky": "^9.1.7",
"vitest": "^4.0.18"
}
}