-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "sezdis",
"version": "0.0.1",
"lisense": "Apache-2.0",
"scripts": {
"build": "tsup",
"lint": "eslint ." ,
"typecheck": "rm -rf _tsout && tsc -p tsconfig.lib.json && tsc -p tsconfig.test.json && tsc -p tsconfig.json" ,
"verify": "yarn build && yarn test && yarn lint && yarn typecheck" ,
"dev": "tsup --watch",
"test": "jest",
"clean": "rm -rf dist node_modules _tsout"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"tslib": "^2.6.2",
"hacl-wasm": "1.4.0",
"node-aes-cmac": "0.1.1"
},
"devDependencies": {
"ts-jest": "^29.1.1",
"jest": "^29.5.11",
"ts-node": "^10.9.2",
"@types/jest": "^29.5.11",
"@types/node": "^18.15.3",
"@typescript-eslint/parser": "^6.16.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"tsup": "8.0.1",
"typescript": "^5.3.3"
}
}