-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.22 KB
/
package.json
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": "@meeco/sd-jwt-vc",
"version": "1.3.0",
"description": "SD-JWT VC implementation in typescript",
"scripts": {
"build": "tsc",
"build-all": "npm-run-all clear build:*",
"build:browser": "tsc -b ./tsconfig/browser.json && echo '{\"type\": \"module\"}'> dist/browser/package.json",
"build:browser-bundle-min": "esbuild --minify --bundle dist/browser/index.js --format=esm --target=es2018 --outfile=dist/browser/index.bundle.min.js",
"build:node-cjs": "tsc -b ./tsconfig/node-cjs.json",
"build:node-esm": "tsc -b ./tsconfig/node-esm.json && echo '{\"type\": \"module\"}'> dist/node/esm/package.json",
"build:types": "tsc -b ./tsconfig/types.json",
"clear": "rm -Rf ./dist",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,test}/**/*.ts\"",
"test": "jest --verbose"
},
"engines": {
"node": ">=18",
"npm": ">=8.0.0"
},
"repository": "https://github.com/Meeco/sd-jwt-vc",
"keywords": [
"sd-jwt-vc"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"bun": "./dist/browser/index.js",
"browser": "./dist/browser/index.js",
"worker": "./dist/browser/index.js",
"import": "./dist/node/esm/index.js",
"require": "./dist/node/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/node/cjs/index.js",
"browser": "./dist/browser/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/**/package.json",
"dist/**/*.js",
"dist/types/**/*.d.ts",
"!dist/**/*.bundle.js",
"!dist/**/*.umd.js",
"!dist/**/*.min.js"
],
"author": "Meeco",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jose": "^5.9.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@meeco/sd-jwt": "^1.2.1"
}
}