-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.15 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
74
75
76
77
78
79
80
81
82
83
{
"name": "@apeleghq/rfc8188",
"version": "1.0.7",
"description": "An implementation of RFC 8188 (encrypted content-encoding for HTTP)",
"type": "module",
"main": "dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./decrypt": {
"import": {
"types": "./dist/exports/decrypt.d.ts",
"default": "./dist/decrypt.mjs"
},
"require": {
"types": "./dist/exports/decrypt.d.cts",
"default": "./dist/decrypt.cjs"
}
},
"./encodings": {
"import": {
"types": "./dist/exports/encodings.d.ts",
"default": "./dist/encodings.mjs"
},
"require": {
"types": "./dist/exports/encodings.d.cts",
"default": "./dist/encodings.cjs"
}
},
"./encrypt": {
"import": {
"types": "./dist/exports/encrypt.d.ts",
"default": "./dist/encrypt.mjs"
},
"require": {
"types": "./dist/exports/encrypt.d.cts",
"default": "./dist/encrypt.cjs"
}
}
},
"devDependencies": {
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApelegHQ/ts-rfc8188.git"
},
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"build": "tsc --emitDeclarationOnly --declarationMap --declaration && node esbuild.mjs",
"test": "node --loader ts-node/esm test/index.test.ts",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Apeleg Limited",
"license": "ISC",
"keywords": ["encrypted content encoding", "encrypted-content-encoding", "rfc8188", "aes128gcm"]
}