diff --git a/packages/identity/package.json b/packages/identity/package.json index 2f1c2fc..cc2196c 100644 --- a/packages/identity/package.json +++ b/packages/identity/package.json @@ -4,23 +4,27 @@ "description": "Library for managing identities for Semaphore and RLN protocols.", "license": "MIT", "main": "dist/index.node.js", - "types": "dist/types/index.d.ts", "exports": { "import": "./dist/index.mjs", "require": "./dist/index.node.js" }, + "types": "dist/types/index.d.ts", + "files": [ + "dist/", + "src/", + "README.md" + ], "repository": "https://github.com/appliedzkp/zk-kit", "homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/identity", + "author": { + "name": "Andrija Novakovic", + "email": "akinovak@gmail.com" + }, "scripts": { "build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript", "build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript", "prepublishOnly": "yarn build" }, - "keywords": [], - "author": { - "name": "Andrija Novakovic", - "email": "akinovak@gmail.com" - }, "publishConfig": { "access": "public" }, diff --git a/packages/incremental-merkle-tree/package.json b/packages/incremental-merkle-tree/package.json index 6ecd520..ab2cfbf 100644 --- a/packages/incremental-merkle-tree/package.json +++ b/packages/incremental-merkle-tree/package.json @@ -2,6 +2,7 @@ "name": "@zk-kit/incremental-merkle-tree", "version": "0.1.0", "description": "Incremental Merkle tree implementation in TypeScript.", + "license": "MIT", "iife": "dist/index.js", "unpkg": "dist/index.min.js", "jsdelivr": "dist/index.min.js", @@ -14,7 +15,6 @@ "files": [ "dist/", "src/", - "LICENSE", "README.md" ], "repository": "git@github.com:appliedzkp/zk-kit.git", @@ -24,7 +24,6 @@ "email": "me@cedoor.dev", "url": "https://cedoor.dev" }, - "license": "MIT", "scripts": { "benchmark": "node -r ts-node/register benchmarks/index.ts", "build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript", diff --git a/packages/protocols/package.json b/packages/protocols/package.json index b0b038c..795e6aa 100644 --- a/packages/protocols/package.json +++ b/packages/protocols/package.json @@ -4,23 +4,27 @@ "description": "Client library for generating and verifying Semaphore & RLN ZK proofs.", "license": "MIT", "main": "dist/index.node.js", - "types": "dist/types/index.d.ts", "exports": { "import": "./dist/index.mjs", "require": "./dist/index.node.js" }, + "types": "dist/types/index.d.ts", + "files": [ + "dist/", + "src/", + "README.md" + ], "repository": "https://github.com/appliedzkp/zk-kit", "homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/protocols", + "author": { + "name": "Andrija Novakovic", + "email": "akinovak@gmail.com" + }, "scripts": { "build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript", "build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript", "prepublishOnly": "yarn build" }, - "keywords": [], - "author": { - "name": "Andrija Novakovic", - "email": "akinovak@gmail.com" - }, "publishConfig": { "access": "public" }, diff --git a/packages/sparse-merkle-tree/package.json b/packages/sparse-merkle-tree/package.json index c23b7e7..fcc2978 100644 --- a/packages/sparse-merkle-tree/package.json +++ b/packages/sparse-merkle-tree/package.json @@ -2,6 +2,7 @@ "name": "@zk-kit/sparse-merkle-tree", "version": "0.1.0", "description": "Sparse Merkle tree implementation in TypeScript.", + "license": "MIT", "keywords": [ "typescript", "sparse-merkle-tree", @@ -19,7 +20,6 @@ "files": [ "dist/", "src/", - "LICENSE", "README.md" ], "repository": "git@github.com:appliedzkp/zk-kit.git", @@ -29,7 +29,6 @@ "email": "me@cedoor.dev", "url": "https://cedoor.dev" }, - "license": "MIT", "scripts": { "build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript", "build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",