-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
33 lines (33 loc) · 925 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": "@hyperledger/indy-vdr-shared",
"version": "0.1.0-dev.13",
"license": "Apache-2.0",
"description": "Shared library for using Indy VDR with NodeJS and React Native",
"main": "build/index",
"source": "src/index",
"homepage": "https://github.com/hyperledger/indy-vdr/tree/main/wrappers/javascript/indy-vdr-shared",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/indy-vdr",
"directory": "wrappers/javascript/indy-vdr-shared"
},
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"scripts": {
"build": "yarn run clean && yarn run compile",
"clean": "rimraf -rf ./build",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/runtime": "^7.17.9",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "~4.9.4"
}
}