-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "@bytetrade/core",
"version": "0.4.17",
"description": "didvault core module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "GPLv3",
"dependencies": {
"axios": "1.12.2",
"chai": "^4.3.7",
"date-fns": "2.22.1",
"lodash": "^4.17.21",
"multiformats": "9.6.4",
"semver": "^7.7.2",
"uuid": "9.0.1"
},
"devDependencies": {
"@swc/core": "^1.3.36",
"@types/chai": "4.2.18",
"@types/jest": "^29.5.14",
"@types/mocha": "8.2.2",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.1.2",
"mocha": "11.7.2",
"prettier": "^2.8.4",
"ts-jest": "^29.4.0",
"ts-node": "10.1.0",
"tsup": "8.5.0",
"typescript": "^4.9.5"
},
"scripts": {
"test": "jest",
"posttest": "npm run format",
"docs": "typedoc --mode modules --out docs",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"prepare": "husky install",
"build": "rm -rf dist && tsup",
"build-dev": "npm run build && yalc push"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css,md}": "prettier --write"
}
}