-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.33 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.33 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
{
"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": "dist/src/not3.js"
},
"files": [
"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"
],
"scripts": {
"build": "pnpm build:license && pnpm build:nest",
"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:nest": "nest build",
"dev": "node dist/src/not3.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/core": "^11.1.6",
"@nestjs/platform-express": "^11.1.6",
"@not3/sdk": "^2.0.1",
"enquirer": "^2.4.1",
"nest-commander": "^3.19.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^11.0.5",
"@nestjs/schematics": "^11.0.2",
"@nestjs/testing": "^11.1.6",
"@types/express": "^5.0.0",
"@types/node": "^24.3.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.5.4",
"generate-license-file": "^4.0.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}