-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.08 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
{
"name": "@boringnode/encryption",
"description": "A framework agnostic encryption library",
"version": "1.0.0",
"engines": {
"node": ">=20.6"
},
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./drivers/*": "./build/src/drivers/*.js",
"./factories": "./build/factories/main.js",
"./message_verifier": "./build/src/message_verifier.js",
"./base64": "./build/src/base64.js",
"./types": "./build/src/types/main.js"
},
"scripts": {
"build": "yarn clean && tsup-node",
"clean": "del-cli build",
"lint": "eslint .",
"pretest": "yarn lint",
"prepublishOnly": "npm run build",
"release": "yarn dlx release-it",
"quick:test": "yarn node --import=@poppinss/ts-exec --enable-source-maps bin/test.ts --reporters=dot",
"test": "yarn quick:test",
"test:coverage": "c8 yarn quick:test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@poppinss/utils": "^7.0.1"
},
"devDependencies": {
"@adonisjs/eslint-config": "^3.0.0",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^2.0.0",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@swc/core": "^1.15.18",
"@types/node": "^22.19.9",
"c8": "^11.0.0",
"del-cli": "^7.0.0",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"contributors": [
"Harminder Virk <virk@adonisjs.com>"
],
"license": "MIT",
"keywords": [
"encryption",
"crypto"
],
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
},
"packageManager": "yarn@4.12.0"
}