2022-02-24 03:19:18 +00:00
|
|
|
{
|
2023-07-04 11:01:25 +00:00
|
|
|
"name": "wallet",
|
2022-08-31 04:35:46 +00:00
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
2022-03-14 13:18:11 +00:00
|
|
|
"sourceRoot": "libs/wallet/src",
|
2022-02-24 03:19:18 +00:00
|
|
|
"projectType": "library",
|
|
|
|
"targets": {
|
|
|
|
"build": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "@nx/rollup:rollup",
|
2022-08-31 13:23:01 +00:00
|
|
|
"outputs": ["{options.outputPath}"],
|
2022-02-24 03:19:18 +00:00
|
|
|
"options": {
|
2022-03-14 13:18:11 +00:00
|
|
|
"outputPath": "dist/libs/wallet",
|
2024-03-08 13:20:03 +00:00
|
|
|
"main": "libs/wallet/src/index.ts",
|
2022-03-14 13:18:11 +00:00
|
|
|
"tsConfig": "libs/wallet/tsconfig.lib.json",
|
2024-03-08 13:20:03 +00:00
|
|
|
"assets": [],
|
2022-03-14 13:18:11 +00:00
|
|
|
"project": "libs/wallet/package.json",
|
2023-09-08 20:43:54 +00:00
|
|
|
"compiler": "swc",
|
2024-03-08 13:20:03 +00:00
|
|
|
"format": ["esm"],
|
|
|
|
"external": ["@vegaprotocol/types", "@vegaprotocol/utils"]
|
2022-02-24 03:19:18 +00:00
|
|
|
}
|
|
|
|
},
|
2024-03-08 13:20:03 +00:00
|
|
|
"publish": {
|
|
|
|
"command": "node tools/scripts/publish.mjs wallet {args.ver} {args.tag}",
|
|
|
|
"dependsOn": ["build"]
|
|
|
|
},
|
2022-02-24 03:19:18 +00:00
|
|
|
"lint": {
|
2023-11-14 14:25:29 +00:00
|
|
|
"executor": "@nx/eslint:lint",
|
2022-08-31 13:23:01 +00:00
|
|
|
"outputs": ["{options.outputFile}"],
|
2022-02-24 03:19:18 +00:00
|
|
|
"options": {
|
2024-03-08 13:20:03 +00:00
|
|
|
"lintFilePatterns": ["libs/wallet/**/*.ts", "libs/wallet/package.json"]
|
2022-02-24 03:19:18 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
2023-07-04 11:01:25 +00:00
|
|
|
"executor": "@nx/jest:jest",
|
2024-03-08 13:20:03 +00:00
|
|
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
2022-02-24 03:19:18 +00:00
|
|
|
"options": {
|
2023-11-14 14:25:29 +00:00
|
|
|
"jestConfig": "libs/wallet/jest.config.ts"
|
2022-02-24 03:19:18 +00:00
|
|
|
}
|
|
|
|
}
|
2024-03-08 13:20:03 +00:00
|
|
|
},
|
|
|
|
"tags": []
|
2022-02-24 03:19:18 +00:00
|
|
|
}
|