forked from delanni/itsdangerous.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 930 Bytes
/
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
{
"name": "itsdangerous.js",
"version": "2.0.0",
"description": "Safely pass trusted data to untrusted environments and back.",
"keywords": [
"hmac",
"itsdangerous",
"pallets",
"python",
"security",
"serialization"
],
"repository": "hampuskraft/itsdangerous.js",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"format": "prettier --write .",
"prepublishOnly": "npm run -s build",
"test": "vitest run"
},
"dependencies": {
"base64url": "3.0.1",
"ts-mixer": "^6.0.2"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.11.17",
"prettier": "^2.8.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.2"
},
"engines": {
"node": ">=16.17"
}
}