-
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) · 3.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.19 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": "pontus-x_cli",
"description": "Command Line Interface for the Pontus-X Data Space Ecosystem",
"version": "1.2.5",
"author": "AgrospAI",
"bin": {
"pontus-x_cli": "bin/run.js"
},
"bugs": "https://github.com/AgrospAI/pontus-x_cli/issues",
"dependencies": {
"@deltadao/nautilus": "^1.1.0",
"@gaia-x/did-web-generator": "^1.1.0",
"@gaia-x/json-web-signature-2020": "^2.3.0",
"@inquirer/prompts": "^8.2.0",
"@inquirer/search": "^4.1.0",
"@oceanprotocol/ddo-js": "^0.1.3",
"@oceanprotocol/lib": "^5.0.4",
"@oclif/core": "^4",
"@oclif/plugin-autocomplete": "^3.2.34",
"@oclif/plugin-help": "^6",
"ajv": "^8.17.1",
"axios": "^1.7.9",
"chalk": "^5.6.2",
"dotenv": "^16.4.7",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.7.2",
"handlebars": "^4.7.8",
"oclif": "^4.22.14",
"readline-sync": "^1.4.10",
"ts-json-schema-generator": "^2.4.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@oclif/test": "^4",
"@types/figlet": "^1.7.0",
"@types/node": "^18",
"@types/readline-sync": "^1.4.8",
"@vitest/ui": "^3.2.4",
"copyfiles": "^2.4.1",
"jest-diff": "^30.2.0",
"oclif": "^4",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"shx": "^0.3.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://github.com/AgrospAI/pontus-x_cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"bin": "pontus-x_cli",
"dirname": "pontus-x_cli",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
],
"topicSeparator": " "
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgrospAI/pontus-x_cli.git"
},
"scripts": {
"dev": "npm run build && ts-node -r tsconfig-paths/register ./bin/dev.js",
"build": "shx rm -rf dist tsconfig.tsbuildinfo && tsc -b && tsc-alias -p tsconfig.json && shx cp -r src/lib/gaia-x_compliance/generate-credentials/templates dist/lib/gaia-x_compliance/generate-credentials/",
"format": "npx @biomejs/biome format --write",
"lint": "npx @biomejs/biome lint --write",
"fix": "npx @biomejs/biome check --write",
"check": "tsc --noEmit",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"test": "vitest --run",
"test:init": "ts-node -r tsconfig-paths/register test/helpers/assets.ts initializeAssets",
"test:clean": "ts-node -r tsconfig-paths/register test/helpers/assets.ts revokeAssets",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"schema:publish": "ts-json-schema-generator --path 'src/types/publish.d.ts' --type 'PublishConfig' --expose 'export' --out 'src/types/schema.json'",
"schema:manifest": "ts-node src/scripts/json-schema.ts generateManifestJsonSchema",
"local-install": "npm install -g ."
},
"types": "dist/index.d.ts"
}