This commit is contained in:
Ildar Galeev 2022-12-20 19:55:41 +03:00 committed by GitHub
parent 5b29d81c83
commit 9001474c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12718 additions and 187 deletions

3
.gitignore vendored
View File

@ -79,4 +79,5 @@ env.list
# frontend
node_modules
lib
clients
dist

12878
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
{
"name": "@vality/dominant-cache-proto",
"version": "1.0.0",
"version": "2.0.0",
"scripts": {
"codegen": "thrift-codegen"
"codegen": "thrift-codegen --i ./proto --n dominant_cache"
},
"publishConfig": {
"access": "public",
@ -12,15 +12,27 @@
"type": "git",
"url": "git+https://github.com/valitydev/dominant-cache-proto.git"
},
"exports": {
".": "./dist/thrift-codegen.bundle.js",
"./metadata.json": "./dist/metadata.json",
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"homepage": "https://github.com/valitydev/dominant-cache-proto#readme",
"files": [
"lib/**/*.{js,d.ts,json}",
"dist/**/*.{js,d.ts,json}",
"**/*.thrift"
],
"main": "./lib/dominant_cache.js",
"types": "./lib/dominant_cache.d.ts",
"main": "./dist/thrift-codegen.bundle.js",
"types": "index.d.ts",
"typesVersions": {
">=4.6": {
"*": [
"dist/types/*"
]
}
},
"devDependencies": {
"@vality/thrift-codegen": "0.1.1-c81b4b7.0"
"@vality/thrift-codegen": "2.0.1-a8cdbd9.0"
}
}