mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: 34ac48c9381e4da410ea15fdd54c821324d2ff1a [formerly 8bc8ac0a7d8de4abff74431d7eea8cd6b1bed0de] [formerly 92641047c8032ee09fc31c53bf2c58364eb9e8e4 [formerly 88bb4e4ea5]]
Former-commit-id: f19f234494ae27814b4c7639561827ea29abcd01 [formerly 5c961ece33b53cd2b114790efebb44ef3ab79958]
Former-commit-id: e59bcd0b6b93d400680823124694827e912396cf
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "@zk-kit/rollup-plugin-rust",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Rollup plugin for bundling and importing Rust crates with WASM.",
|
|
"license": "MIT",
|
|
"main": "dist/index.node.js",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.node.js"
|
|
},
|
|
"types": "dist/types/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"src/",
|
|
"README.md"
|
|
],
|
|
"repository": "git@github.com:appliedzkp/zk-kit.git",
|
|
"homepage": "https://github.com/appliedzkp/zk-kit/tree/main/packages/rollup-plugin-rust",
|
|
"author": {
|
|
"name": "Omar Desogus",
|
|
"email": "me@cedoor.dev",
|
|
"url": "https://cedoor.dev"
|
|
},
|
|
"scripts": {
|
|
"build:watch": "rollup -c rollup.config.js",
|
|
"build": "rimraf dist && rollup -c rollup.config.js",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"glob": "^7.1.6",
|
|
"rimraf": "^3.0.0",
|
|
"rollup-pluginutils": "^2.8.2",
|
|
"toml": "^3.0.0",
|
|
"wasm-pack": "^0.10.2"
|
|
}
|
|
}
|