-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 919 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
{
"name": "@dataprograms/repdao-polybase",
"version": "1.0.8",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"release": "rm -rf dist && npm run build && cp package*.json dist && cd dist && npm ci --omit=dev && zip -r index.zip .",
"populate": "ts-node-esm src/run.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/data-preservation-programs/RepPoly.git"
},
"license": "(MIT OR Apache-2.0)",
"devDependencies": {
"@polybase/auth": "^0.6.2",
"@polybase/eth": "^0.6.2",
"@types/aws-lambda": "^8.10.109",
"@types/node": "^18.11.9",
"dotenv": "^16.3.1",
"mongodb": "^5.6.0",
"p-queue": "^7.3.4",
"p-retry": "^5.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@dataprograms/repdao-polybase": "^1.0.6",
"@polybase/client": "^0.6.2"
}
}