-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "@socialgouv/e2esdk-crypto",
"version": "0.0.0-semantically-released",
"license": "Apache-2.0",
"description": "Cryptographic constructs & algorithms for e2eSDK client & server",
"author": {
"name": "François Best",
"email": "[email protected]",
"url": "https://francoisbest.com"
},
"repository": "https://github.com/SocialGouv/e2esdk",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"sceau.json"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"tsup": {
"entry": [
"src/index.ts"
],
"treeshake": true
},
"scripts": {
"dev": "tsup --format esm --dts --watch",
"build:npm": "tsup --clean --format esm,cjs --dts",
"build:server": "tsup --clean --format esm",
"typecheck": "tsc",
"test": "jest --color",
"prepack": "sceau sign"
},
"dependencies": {
"@socialgouv/e2esdk-api": "workspace:^",
"@stablelib/hex": "^1.0.1",
"libsodium-wrappers": "^0.7.11",
"secure-json-parse": "^2.7.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@socialgouv/e2esdk-config-jest": "workspace:*",
"@socialgouv/e2esdk-config-typescript": "workspace:*",
"@types/libsodium-wrappers": "^0.7.10",
"@types/node": "^18.15.5",
"jest": "^29.5.0",
"sceau": "^1.3.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
}
}