Skip to content

Commit

Permalink
Merge pull request #55 from zksecurity/first-release
Browse files Browse the repository at this point in the history
Release on npm
  • Loading branch information
mitschabaude authored Oct 29, 2024
2 parents b18d605 + cd4fc48 commit ad5009e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
14 changes: 0 additions & 14 deletions .npmignore

This file was deleted.

22 changes: 19 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "mina-credentials",
"version": "0.1.0",
"description": "",
"author": "",
"description": "Private Credentials on Mina",
"author": "zksecurity <hello@zksecurity.xyz>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/zksecurity/mina-credentials"
},
"keywords": [
"mina-zkapp",
"mina-zk-app",
Expand All @@ -13,6 +17,11 @@
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": {
"import": "./build/src/index.js"
}
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
Expand All @@ -21,8 +30,15 @@
"test-one": "node --enable-source-maps --test --experimental-strip-types --no-warnings",
"examples": "node --test --experimental-strip-types --no-warnings examples/*.eg.ts",
"extension:dev": "vite build --config browser-extension/vite.config.js --watch",
"extension:build": "vite build --config browser-extension/vite.config.js"
"extension:build": "vite build --config browser-extension/vite.config.js",
"prepublishOnly": "rm -rf build && npm run build"
},
"files": [
"build",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/chrome": "^0.0.272",
"@types/node": "^22.5.5",
Expand Down

0 comments on commit ad5009e

Please sign in to comment.