-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 980 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
44
{
"name": "crypto-primitives",
"version": "1.0.0",
"type": "module",
"directories": {
"lib": "lib",
"test": "test"
},
"main": "./dist/main.js",
"scripts": {
"main": "node ./dist/main.js",
"build": "tsc",
"test": "tsc && NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules';jest",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"o1js": "^2.0.0"
}
}