@nickchristensen/ppls 1.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/README.md +1190 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +5 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/add-command.d.ts +24 -0
- package/dist/add-command.js +47 -0
- package/dist/base-command.d.ts +63 -0
- package/dist/base-command.js +306 -0
- package/dist/commands/config/get.d.ts +11 -0
- package/dist/commands/config/get.js +34 -0
- package/dist/commands/config/init.d.ts +15 -0
- package/dist/commands/config/init.js +43 -0
- package/dist/commands/config/list.d.ts +13 -0
- package/dist/commands/config/list.js +64 -0
- package/dist/commands/config/remove.d.ts +11 -0
- package/dist/commands/config/remove.js +26 -0
- package/dist/commands/config/set.d.ts +12 -0
- package/dist/commands/config/set.js +58 -0
- package/dist/commands/correspondents/add.d.ts +12 -0
- package/dist/commands/correspondents/add.js +20 -0
- package/dist/commands/correspondents/delete.d.ts +16 -0
- package/dist/commands/correspondents/delete.js +18 -0
- package/dist/commands/correspondents/list.d.ts +9 -0
- package/dist/commands/correspondents/list.js +15 -0
- package/dist/commands/correspondents/show.d.ts +14 -0
- package/dist/commands/correspondents/show.js +17 -0
- package/dist/commands/correspondents/update.d.ts +18 -0
- package/dist/commands/correspondents/update.js +24 -0
- package/dist/commands/custom-fields/add.d.ts +16 -0
- package/dist/commands/custom-fields/add.js +91 -0
- package/dist/commands/custom-fields/delete.d.ts +16 -0
- package/dist/commands/custom-fields/delete.js +18 -0
- package/dist/commands/custom-fields/list.d.ts +9 -0
- package/dist/commands/custom-fields/list.js +12 -0
- package/dist/commands/custom-fields/show.d.ts +14 -0
- package/dist/commands/custom-fields/show.js +17 -0
- package/dist/commands/custom-fields/update.d.ts +20 -0
- package/dist/commands/custom-fields/update.js +93 -0
- package/dist/commands/document-types/add.d.ts +12 -0
- package/dist/commands/document-types/add.js +22 -0
- package/dist/commands/document-types/delete.d.ts +16 -0
- package/dist/commands/document-types/delete.js +18 -0
- package/dist/commands/document-types/list.d.ts +9 -0
- package/dist/commands/document-types/list.js +12 -0
- package/dist/commands/document-types/show.d.ts +14 -0
- package/dist/commands/document-types/show.js +17 -0
- package/dist/commands/document-types/update.d.ts +18 -0
- package/dist/commands/document-types/update.js +26 -0
- package/dist/commands/documents/add.d.ts +70 -0
- package/dist/commands/documents/add.js +166 -0
- package/dist/commands/documents/delete.d.ts +16 -0
- package/dist/commands/documents/delete.js +18 -0
- package/dist/commands/documents/download.d.ts +48 -0
- package/dist/commands/documents/download.js +152 -0
- package/dist/commands/documents/list.d.ts +9 -0
- package/dist/commands/documents/list.js +14 -0
- package/dist/commands/documents/show.d.ts +14 -0
- package/dist/commands/documents/show.js +19 -0
- package/dist/commands/documents/update.d.ts +25 -0
- package/dist/commands/documents/update.js +42 -0
- package/dist/commands/profile.d.ts +13 -0
- package/dist/commands/profile.js +19 -0
- package/dist/commands/tags/add.d.ts +17 -0
- package/dist/commands/tags/add.js +29 -0
- package/dist/commands/tags/delete.d.ts +16 -0
- package/dist/commands/tags/delete.js +18 -0
- package/dist/commands/tags/list.d.ts +10 -0
- package/dist/commands/tags/list.js +18 -0
- package/dist/commands/tags/show.d.ts +16 -0
- package/dist/commands/tags/show.js +24 -0
- package/dist/commands/tags/update.d.ts +21 -0
- package/dist/commands/tags/update.js +30 -0
- package/dist/delete-command.d.ts +20 -0
- package/dist/delete-command.js +48 -0
- package/dist/helpers/config-store.d.ts +4 -0
- package/dist/helpers/config-store.js +35 -0
- package/dist/helpers/date-utils.d.ts +3 -0
- package/dist/helpers/date-utils.js +27 -0
- package/dist/helpers/table.d.ts +20 -0
- package/dist/helpers/table.js +42 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/list-command.d.ts +49 -0
- package/dist/list-command.js +98 -0
- package/dist/paginated-command.d.ts +48 -0
- package/dist/paginated-command.js +89 -0
- package/dist/show-command.d.ts +27 -0
- package/dist/show-command.js +50 -0
- package/dist/types/correspondents.d.ts +28 -0
- package/dist/types/correspondents.js +1 -0
- package/dist/types/custom-fields.d.ts +18 -0
- package/dist/types/custom-fields.js +1 -0
- package/dist/types/document-types.d.ts +27 -0
- package/dist/types/document-types.js +1 -0
- package/dist/types/documents.d.ts +70 -0
- package/dist/types/documents.js +1 -0
- package/dist/types/profile.d.ts +15 -0
- package/dist/types/profile.js +1 -0
- package/dist/types/shared.d.ts +4 -0
- package/dist/types/shared.js +1 -0
- package/dist/types/tags.d.ts +31 -0
- package/dist/types/tags.js +1 -0
- package/dist/update-command.d.ts +28 -0
- package/dist/update-command.js +51 -0
- package/oclif.manifest.json +3313 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nickchristensen/ppls",
|
|
3
|
+
"description": "A node-based paperless-ngx cli",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"author": "Nick Christensen",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ppls": "./bin/run.js"
|
|
8
|
+
},
|
|
9
|
+
"bugs": "https://github.com/nickchristensen/ppls/issues",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@oclif/core": "^4",
|
|
12
|
+
"@oclif/plugin-help": "^6",
|
|
13
|
+
"date-fns": "^3.6.0",
|
|
14
|
+
"tty-table": "^5.0.0",
|
|
15
|
+
"yocto-spinner": "^1.0.0"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@eslint/compat": "^1",
|
|
19
|
+
"@oclif/prettier-config": "^0.2.1",
|
|
20
|
+
"@oclif/test": "^4",
|
|
21
|
+
"@types/chai": "^4",
|
|
22
|
+
"@types/mocha": "^10",
|
|
23
|
+
"@types/node": "^18",
|
|
24
|
+
"chai": "^4",
|
|
25
|
+
"eslint": "^9",
|
|
26
|
+
"eslint-config-oclif": "^6",
|
|
27
|
+
"eslint-config-prettier": "^10",
|
|
28
|
+
"mocha": "^10",
|
|
29
|
+
"oclif": "^4",
|
|
30
|
+
"shx": "^0.3.3",
|
|
31
|
+
"ts-node": "^10",
|
|
32
|
+
"typescript": "^5"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=21.0.0"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"./bin",
|
|
39
|
+
"./dist",
|
|
40
|
+
"./oclif.manifest.json"
|
|
41
|
+
],
|
|
42
|
+
"homepage": "https://github.com/nickchristensen/ppls",
|
|
43
|
+
"keywords": [
|
|
44
|
+
"oclif"
|
|
45
|
+
],
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"main": "dist/index.js",
|
|
48
|
+
"type": "module",
|
|
49
|
+
"oclif": {
|
|
50
|
+
"bin": "ppls",
|
|
51
|
+
"dirname": "ppls",
|
|
52
|
+
"commands": "./dist/commands",
|
|
53
|
+
"helpOptions": {
|
|
54
|
+
"hideAliasesFromRoot": true
|
|
55
|
+
},
|
|
56
|
+
"plugins": [
|
|
57
|
+
"@oclif/plugin-help"
|
|
58
|
+
],
|
|
59
|
+
"topicSeparator": " ",
|
|
60
|
+
"topics": {
|
|
61
|
+
"config": {
|
|
62
|
+
"description": "Manage ppls configuration settings"
|
|
63
|
+
},
|
|
64
|
+
"correspondents": {},
|
|
65
|
+
"custom-fields": {},
|
|
66
|
+
"documents": {},
|
|
67
|
+
"document-types": {},
|
|
68
|
+
"tags": {}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"repository": "nickchristensen/ppls",
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public"
|
|
74
|
+
},
|
|
75
|
+
"scripts": {
|
|
76
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
77
|
+
"lint": "eslint",
|
|
78
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
79
|
+
"posttest": "npm run lint",
|
|
80
|
+
"prepack": "oclif manifest && oclif readme --no-aliases",
|
|
81
|
+
"postbuild": "oclif manifest && oclif readme --no-aliases",
|
|
82
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
83
|
+
"version": "oclif readme --no-aliases && git add README.md",
|
|
84
|
+
"publish": "npm publish --access public"
|
|
85
|
+
},
|
|
86
|
+
"types": "dist/index.d.ts"
|
|
87
|
+
}
|