-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@enclosed/lib",
"type": "module",
"version": "1.14.0",
"packageManager": "[email protected]",
"description": "Enclosed lib to create secure notes.",
"author": "Corentin Thomasset <[email protected]> (https://corentin.tech)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/enclosed"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"engines": {
"node": ">=22.0.0"
},
"react-native": "./dist/index.web.mjs",
"scripts": {
"prepare": "pnpm run build",
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@enclosed/crypto": "workspace:*",
"cbor-x": "^1.6.0",
"lodash-es": "^4.17.21",
"msgpackr": "^1.11.0",
"ofetch": "^1.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/lodash-es": "^4.17.12",
"@types/node": "catalog:",
"@vitest/coverage-v8": "^2.0.5",
"dotenv": "^16.4.5",
"eslint": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unbuild": "^2.0.0",
"vitest": "catalog:"
}
}