-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 903 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
{
"name": "itsdangerous.js",
"version": "1.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": {
"ts-mixer": "^6.0.1"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.11.4",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vitest": "^0.24.3"
},
"engines": {
"node": ">=16.17"
}
}