-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 932 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 932 Bytes
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
{
"name": "paseto-cli",
"version": "1.0.0",
"description": "PASETO CLI application (uses paseto-ts)",
"type": "module",
"keywords": [
"decrypt",
"encrypt",
"sign",
"verify",
"paseto",
"v4",
"local",
"public",
"typescript"
],
"bin": {
"paseto-cli": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"test": "vitest run",
"test:watch": "vitest"
},
"homepage": "https://github.com/auth70/paseto-cli",
"repository": "github:auth70/paseto-cli",
"contributors": [
{
"name": "miunau",
"email": "miunau+npm@miunau.com",
"url": "https://miunau.com"
}
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.14.1",
"typescript": "^5.8.3",
"vitest": "^1.3.1"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"paseto-ts": "^2.0.5"
}
}