-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@auxo-dev/zkapp-offchain-storage",
"version": "1.0.6",
"description": "",
"author": "",
"license": "Apache-2.0",
"keywords": [
"mina-zkapp",
"mina-zk-app",
"mina-dapp",
"zkapp",
"dkg"
],
"type": "module",
"main": "./build/esm/src/index.js",
"types": "./build/types/src/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.esm.json tsconfig.cjs.json tsconfig.types.json && ./fix-export.sh",
"build:clean": "rm -rf build && rm package-lock.json && tsc --build tsconfig.esm.json tsconfig.cjs.json tsconfig.types.json && ./fix-export.sh",
"buildw": "tsc --watch",
"scripts": "tsc --build tsconfig.json tsconfig.cjs.json tsconfig.types.json && ./fix-export.sh && node",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"prepare": "husky install",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"testw": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "npx eslint src/* --fix"
},
"exports": {
"types": "./build/types/src/index.d.ts",
"node": {
"require": "./build/cjs/src/index.js",
"import": "./build/esm/src/index.js"
},
"default": "./build/esm/src/index.js"
},
"files": [
"build/*",
"build/**/*.map"
],
"lint-staged": {
"**/*": [
"eslint src/* --fix",
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.7.0",
"eslint-plugin-o1js": "^0.4.0",
"husky": "^7.0.1",
"jest": "^28.1.3",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"ts-jest": "^28.0.8",
"typescript": "^5.4"
},
"dependencies": {
"@auxo-dev/auxo-libs": "^1.0.0",
"o1js": "1.8.0"
}
}