-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 KB
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": "@bfchain/core",
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"description": "",
"bdkMono": {
"generateConfigFiles": [
{
"packages": "*",
"type": "mergejson",
"from": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.cjs.json",
"to": "$PACKAGE/tsconfig.json"
},
{
"packages": "*,-test,-util-exception",
"type": "mergejson",
"from": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.esm-es5.json",
"to": "$PACKAGE/tsconfig.esm-es5.json"
},
{
"packages": "*,-test",
"type": "mergejson",
"from": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.esm.json",
"to": "$PACKAGE/tsconfig.esm.json"
},
{
"packages": "*,-test",
"type": "jsonfromjs",
"src": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.@types.js",
"to": "$PACKAGE/tsconfig.@types.json"
}
]
},
"scripts": {
"-prepare": "yarn mono",
"format": "bdk-format",
"format:all": "bdk-format --mode all",
"clear": "node ./scripts/rmBuild.js",
"up": "yarn upgrade-interactive --latest",
"mono": "bdk-mono",
"publ": "lerna publish",
"publ:type": "yarn mono & node ./scripts/publish-types.js",
"publ:force": "lerna publish --force-publish",
"lsts": "bdk-lsts -p=./tsconfig.json",
"dev": "bdk-tsc --build -w",
"dev:all": "bdk-tsc --build ./tsconfig.all.json -w",
"dev:types": "bdk-tsc --build ./tsconfig.@types.json -w",
"build": "bdk-tsc --build ./tsconfig.all.json",
"rebuild": "yarn clear & yarn build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"execa": "^4.0.3",
"lerna": "^3.22.0",
"typescript": "4.2.4"
},
"dependencies": {
"@bfchain/devkit": "^0.9.35",
"tslib": "^2.2.0"
}
}