-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.96 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@peculiar/webcrypto",
"version": "1.7.1",
"description": "A WebCrypto Polyfill for NodeJS",
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/webcrypto"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./build/webcrypto.es.js",
"require": "./build/webcrypto.js"
},
"./package.json": "./package.json"
},
"files": [
"build/**/*.{ts,js}",
"index.d.ts",
"README.md",
"LICENSE.md"
],
"main": "build/webcrypto.js",
"module": "build/webcrypto.es.js",
"react-native": "build/webcrypto.es.js",
"types": "index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest --coverage",
"build": "rollup -c",
"clear": "rimraf build/*",
"rebuild": "npm run clear && npm run build",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"keywords": [
"webcrypto",
"crypto",
"sha",
"rsa",
"ec",
"aes",
"des",
"hmac",
"pbkdf2",
"eddsa",
"x25519",
"ed25519",
"x448",
"ed448",
"shake128",
"shake256"
],
"author": "PeculiarVentures",
"contributors": [
"Miroshin Stepan<microshine@mail.ru>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/webcrypto/issues"
},
"homepage": "https://github.com/PeculiarVentures/webcrypto#readme",
"devDependencies": {
"@peculiar/eslint-config-base": "^0.2.9",
"@peculiar/webcrypto-test": "^2.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"rimraf": "^6.1.3",
"rollup": "^4.60.2",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@peculiar/asn1-schema": "^2.7.0",
"@peculiar/json-schema": "^1.1.12",
"@peculiar/utils": "^2.0.2",
"tslib": "^2.8.1",
"webcrypto-core": "^1.9.2"
},
"engines": {
"node": ">=14.18.0"
}
}