-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 960 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
{
"name": "vsslib",
"version": "1.0.0",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "tsc --watch",
"test": "jest tests --maxWorkers=1",
"test:reload": "jest tests --watch --maxWorkers=1",
"build": "rm -rf ./build && tsc",
"docs": "typedoc --out docs src/*.ts",
"lint": "eslint ./src",
"run-publish": "node ./scripts/publish.mjs"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"commander": "^10.0.0",
"eslint": "^8.57.0",
"ffjavascript": "^0.2.57",
"inquirer": "^12.0.1",
"jest": "^29.5",
"jest-junit": "^16.0.0",
"js-combinatorics": "^2.1.1",
"ts-jest": "^29.0.5",
"tsx": "^4.19.1",
"typedoc": "^0.23.26",
"typescript": "^4.9.5",
"typescript-eslint": "^7.16.0"
},
"dependencies": {
"@noble/curves": "^0.8.3"
}
}