damsel/package.json

39 lines
921 B
JSON
Raw Normal View History

{
2022-03-24 12:26:31 +00:00
"name": "@vality/domain-proto",
2022-12-14 16:26:38 +00:00
"version": "2.0.0",
2022-03-24 12:26:31 +00:00
"scripts": {
2023-04-07 15:12:08 +00:00
"codegen": "thrift-codegen --i ./proto --n domain_config domain claim_management payment_processing accounter"
2022-03-24 12:26:31 +00:00
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valitydev/damsel.git"
},
2022-12-14 16:26:38 +00:00
"exports": {
".": "./dist/thrift-codegen.bundle.js",
"./metadata.json": "./dist/metadata.json",
"./package.json": "./package.json"
},
"license": "Apache-2.0",
2022-03-24 12:26:31 +00:00
"homepage": "https://github.com/valitydev/damsel#readme",
"files": [
2022-12-14 16:26:38 +00:00
"dist/**/*.{js,d.ts,json}",
2022-03-24 12:26:31 +00:00
"**/*.thrift"
],
2022-12-14 16:26:38 +00:00
"main": "./dist/thrift-codegen.bundle.js",
"types": "index.d.ts",
"typesVersions": {
">=4.6": {
"*": [
"dist/types/*"
]
}
},
2022-03-24 12:26:31 +00:00
"devDependencies": {
"@vality/thrift-codegen": "2.3.2"
2022-03-24 12:26:31 +00:00
}
}