-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.73 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.73 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
{
"name": "identus",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "sh build.sh",
"clean": "npm run clean:generated && npm run clean:build && npm run clean:reset",
"clean:reset": "npx nx reset",
"clean:generated": "find packages g -name generated -type d -not -path '*/node_modules/*' -exec rm -rf {} + 2>/dev/null; echo 'All generated folders cleaned'",
"clean:build": "find packages g -name build -type d -not -path '*/node_modules/*' -exec rm -rf {} + 2>/dev/null; echo 'All build folders cleaned'",
"test": "npx nx run-many --target=test",
"coverage": "vitest run --coverage",
"coverage:nx": "npx nx run-many --target=coverage",
"lint": "npx nx run-many --target=lint",
"lint:fix": "npx nx run-many --target=lint -- --fix",
"lint:text": "npx markdownlint-cli2 '**/*.md' && npx yamllint-ts -c .yamllint.yml $(find . \\( -name '*.yml' -o -name '*.yaml' \\) -not -path '*/node_modules/*' -not -path '*/.git/*' -not -path '*/externals/*' -not -path '*/coverage/*') && npx editorconfig-checker -exclude '\\.git|node_modules|coverage|externals|docs/sdk'",
"lint:text:fix": "npx markdownlint-cli2 '**/*.md' --fix",
"docs": "npx nx run-many --target=docs"
},
"description": "Identus SDK - Typescript",
"author": "IOHK",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-identus/sdk-ts.git"
},
"license": "Apache-2.0",
"keywords": [],
"workspaces": [
"packages/lib/*",
"packages/shared/*",
"packages/wasm/*"
],
"devDependencies": {
"@eslint/eslintrc": "3",
"@nx/vite": "22.4.4",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.11.24",
"@types/google-protobuf": "^3.15.6",
"@types/jsonld": "^1.5.14",
"@types/node": "^22",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitest/browser": "^3.1.1",
"@vitest/coverage-istanbul": "^3.1.1",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.26.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^28.11.0",
"jsdom": "^24.1.0",
"nx": "22.4.4",
"prettier": "^3.5.3",
"protoc-gen-ts": "^0.8.7",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vitest": "^3.1.1"
},
"dependencies": {
"multiformats": "^13.4.2"
},
"peerDependencies": {
"@types/elliptic": "^6.4.16",
"buffer": "^6.0.3",
"core-js": "^3.32.2",
"elliptic": "^6.5.4",
"jsdom": "^24.1.0"
},
"overrides": {
"ws": "^8.17.1"
},
"packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538"
}