-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
72 lines (72 loc) · 2.17 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
72
{
"version": "0.3.0",
"license": "Apache-2.0",
"exports": {
".": {
"import": "./dist/signify-ts.mjs",
"require": "./dist/signify-ts.cjs",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"start": "npm run build:esm -- --watch",
"build:cjs": "esbuild src/index.ts --bundle --outfile=dist/signify-ts.cjs --platform=neutral --format=cjs --sourcemap --packages=external",
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/signify-ts.mjs --platform=neutral --format=esm --sourcemap --packages=external",
"build:types": "tsc -p tsconfig.build.json",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"test": "jest test/",
"test:integration": "jest examples/integration-scripts/ --runInBand --bail",
"lint": "npx eslint src test examples/integration-scripts",
"prepare": "npm run build",
"generate-docs": "jsdoc --configure .jsdoc.json --verbose",
"pretty": "prettier --write .",
"pretty:check": "prettier --check ."
},
"name": "signify-ts",
"author": "Phil Feairheller",
"devDependencies": {
"@mermaid-js/mermaid-cli": "^10.6.1",
"@types/jest": "^29.5.8",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@types/node": "^18.11.18",
"@types/urlsafe-base64": "^1.0.28",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^4.0.2",
"minami": "^1.2.3",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"whatwg-fetch": "^3.6.19"
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"buffer": "^6.0.3",
"ecdsa-secp256r1": "^1.3.3",
"libsodium-wrappers-sumo": "^0.7.9",
"mathjs": "^12.4.0",
"structured-headers": "^0.5.0"
},
"overrides": {
"@mermaid-js/mermaid-cli@^10.6.1": {
"puppeteer": "^22"
}
},
"workspaces": [
"examples/*"
]
}