-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.48 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
73
{
"$schema": "https://json.schemastore.org/package.json",
"name": "iron-webcrypto",
"version": "1.2.1",
"description": "a cryptographic utility for sealing-unsealing a JSON object using symmetric key encryption with message integrity verification",
"keywords": [
"authentication",
"data integrity",
"encryption",
"webcrypto"
],
"bugs": {
"url": "https://github.com/brc-dd/iron-webcrypto",
"email": "[email protected]"
},
"repository": "github:brc-dd/iron-webcrypto",
"funding": "https://github.com/sponsors/brc-dd",
"license": "MIT",
"author": "Divyansh Singh <[email protected]> (https://github.com/brc-dd)",
"sideEffects": false,
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"files": [
"dist/*"
],
"scripts": {
"build": "pnpm i && tsup && git add -f dist",
"check": "pnpm lint && pnpm test",
"lint": "pnpm build && pnpm lint:only",
"lint:only": "lefthook run pre-commit && publint && attw --pack",
"test": "pnpm test:node && pnpm test:deno && pnpm test:bun",
"test:bun": "bun --cwd=tests/bun test",
"test:deno": "DENO_FUTURE=1 DENO_NO_PACKAGE_JSON=1 deno test tests/deno/index.test.ts --parallel --no-check",
"test:node": "tsx --test tests/node/index.test.ts"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/bun": "^1.1.8",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unicorn": "^55.0.0",
"jsr": "^0.13.1",
"lefthook": "^1.7.14",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"publint": "^0.2.10",
"release-it": "^17.6.0",
"replace": "^1.2.2",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"runkitExampleFilename": "dist/example.js"
}