forked from zkpayroll/zk-payroll-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 798 Bytes
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
{
"name": "zk-payroll-sdk",
"version": "0.1.0",
"private": true,
"packageManager": "npm@10.8.2",
"description": "ZK Payroll SDK monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/core",
"test": "npm run test -w packages/core",
"clean": "npm run clean -w packages/core",
"lint": "npm run lint -w packages/core",
"lint:fix": "npm run lint:fix -w packages/core",
"format": "npm run format -w packages/core",
"typecheck": "npm run typecheck -w packages/core",
"docs:build": "npm run docs:build -w packages/core"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.5.0",
"axios": "^1.7.0",
"snarkjs": "^0.7.5",
"stellar-sdk": "^11.0.0"
},
"devDependencies": {
"turbo": "^2.0.0"
}
}