feature/type-declarations #1

Merged
jackhadrill merged 9 commits from feature/type-declarations into master 2022-01-31 01:08:06 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 360f272323 - Show all commits

View File

@ -2,8 +2,8 @@
"name": "romulus-js",
"version": "1.0.0",
"description": "An implementation of the Romulus-M cryptography specification.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "index.js",
"types": "index",
"scripts": {
"lint": "ts-standard",
"test": "jest",

View File

@ -13,7 +13,7 @@
"declaration": true
},
"exclude": [
"./tests/**/*",
"./dist/**/*"
"tests",
"dist"
]
}