-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.16 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.16 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
{
"name": "@ketrwu/simplelogin-cli",
"description": "Unofficial SimpleLogin CLI",
"version": "0.2.2",
"author": "Kenneth Wußmann",
"bin": {
"sl": "./bin/run.js"
},
"keywords": [
"simplelogin",
"api",
"cli",
"client",
"sdk",
"rest",
"simplelogin.io"
],
"bugs": "https://github.com/KennethWussmann/simplelogin-cli/issues",
"dependencies": {
"@inquirer/prompts": "^8.1.0",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"simplelogin-client": "^0.5.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/compat": "^2",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^25",
"chai": "^6",
"eslint": "^9",
"eslint-config-oclif": "^6",
"eslint-config-prettier": "^10",
"markdown-toc": "^1.2.0",
"mocha": "^11",
"oclif": "^4",
"shx": "^0.4.0",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"./bin",
"./dist",
"./LICENSE",
"./oclif.manifest.json",
"./scripts"
],
"homepage": "https://github.com/KennethWussmann/simplelogin-cli",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "sl",
"dirname": "sl",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {}
},
"repository": "KennethWussmann/simplelogin-cli",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"build:watch": "shx rm -rf dist && tsc -b -w",
"lint": "eslint",
"postinstall": "node scripts/postinstall.js",
"postpack": "shx rm -f oclif.manifest.json",
"pack:tarballs": "oclif pack tarballs",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && oclif readme && markdown-toc -i README.md",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts",
"packageManager": "pnpm@10.26.1+sha512.664074abc367d2c9324fdc18037097ce0a8f126034160f709928e9e9f95d98714347044e5c3164d65bd5da6c59c6be362b107546292a8eecb7999196e5ce58fa"
}