-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.81 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@not3/cli",
"version": "IN-DEV",
"description": "The !3 command line interface, pipe logs or upload files in a jiffy.",
"author": "Joschua Becker EDV <support@scolasti.co>",
"private": false,
"license": "AGPL-3.0-only",
"bin": {
"not3": "bin/run.js"
},
"engines": {
"node": ">=20"
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md",
"package.json",
"pnpm-lock.yaml"
],
"repository": {
"type": "git",
"url": "https://github.com/not-three/cli.git"
},
"homepage": "https://not-th.re",
"keywords": [
"not3",
"cli",
"pastebin"
],
"oclif": {
"bin": "not3",
"dirname": "not3",
"commands": "./dist/commands",
"helpClass": "./dist/help",
"topicSeparator": " ",
"topics": {
"note": {
"description": "Save and fetch encrypted notes"
},
"file": {
"description": "Upload and download encrypted files"
},
"crypto": {
"description": "Local encryption utilities"
},
"server": {
"description": "Server information and statistics"
},
"config": {
"description": "Manage the global not3 config file"
}
}
},
"scripts": {
"build": "pnpm build:license && pnpm build:tsc",
"build:license": "pnpm build:license:generate && pnpm build:license:json",
"build:license:generate": "generate-license-file --input package.json --output src/license.txt --overwrite",
"build:license:json": "node -e \"const fs = require('fs'); fs.writeFileSync('src/license.json',JSON.stringify({value: fs.readFileSync('src/license.txt', 'utf8')}));\"",
"build:tsc": "tsc -p tsconfig.build.json",
"dev": "node bin/dev.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "mocha"
},
"dependencies": {
"@not3/sdk": "^2.0.5",
"@oclif/core": "^4",
"enquirer": "^2.4.1",
"qrcode-terminal": "^0.12.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@oclif/test": "^4",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^24.3.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/yauzl": "^3.4.0",
"@types/yazl": "^3.3.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"chai": "^4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.5.4",
"generate-license-file": "^4.0.0",
"mocha": "^10",
"nock": "^14",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"yauzl": "^3.4.0"
},
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b"
}