-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.14 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
{
"name": "occulto",
"version": "2.0.6",
"description": "crypt utility",
"keywords": [
"isomorphic",
"crypto",
"aes",
"rsa"
],
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/occulto"
},
"license": "MIT",
"author": {
"name": "Niccolo Borgioli",
"email": "opensource@nicco.io",
"url": "https://nicco.io"
},
"sideEffects": false,
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"docs": "typedoc",
"test:node": "vitest",
"test:browsers": "zx test.browsers.js",
"test": "CI=1 run-s build test:*",
"build": "tsc",
"clean": "rm -rf ./dist",
"dev": "vitest",
"prepublishOnly": "run-s clean test"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.5.2",
"@vitest/browser": "^2.0.5",
"npm-run-all": "^4.1.5",
"playwright": "^1.46.1",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"zx": "^8.1.5"
},
"packageManager": "pnpm@9.8.0",
"engines": {
"node": ">=18"
}
}