mirror of
https://github.com/CryptKeeperZK/crypt-keeper-extension.git
synced 2026-01-09 14:07:57 -05:00
* chore: move common types to `@cryptkeeper/types` * fix: run build for check workflow * chore: add prettier ignore * fix: e2e * chore: add missing deps for demo * chore: use ignore path for prettier --------- Co-authored-by: 0xmad <0xmad@users.noreply.github.com>
76 lines
2.3 KiB
JSON
76 lines
2.3 KiB
JSON
{
|
|
"name": "crypt-keeper-extension",
|
|
"version": "1.0.0",
|
|
"description": "Crypt-Keeper Extension, zero knowledge identity management and proof generation tool",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"demo:start": "pnpm -r run start",
|
|
"build": "pnpm -r run build",
|
|
"dev": "pnpm -r run dev",
|
|
"build:e2e": "pnpm -r run build:e2e",
|
|
"build:chrome": "cross-env TARGET=chrome pnpm -r run build",
|
|
"dev:chrome": "cross-env TARGET=chrome pnpm -r run dev",
|
|
"build:firefox": "cross-env TARGET=firefox pnpm -r run build",
|
|
"dev:firefox": "cross-env TARGET=firefox pnpm -r run dev",
|
|
"merkle": "pnpm -r run merkle",
|
|
"test": "pnpm -r run test",
|
|
"test:coverage": "pnpm -r run test:coverage",
|
|
"e2e": "pnpm -r run e2e",
|
|
"e2e:ci": "pnpm -r run e2e:ci",
|
|
"lint": "pnpm -r run lint",
|
|
"lint:fix": "pnpm -r run lint:fix",
|
|
"prettier": "pnpm -r run prettier",
|
|
"prettier:fix": "pnpm -r run prettier:fix",
|
|
"types": "pnpm -r run types",
|
|
"commit": "cz",
|
|
"githook:precommit": "pnpm -r run githook:precommit",
|
|
"githook:prepush": "pnpm -r run githook:prepush",
|
|
"prepare": "is-ci || husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"typescript",
|
|
"chrome",
|
|
"firefox",
|
|
"extension"
|
|
],
|
|
"author": "Privacy and Scaling explorations team",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/privacy-scaling-explorations/crypt-keeper-extension"
|
|
},
|
|
"homepage": "https://github.com/privacy-scaling-explorations/crypt-keeper-extension",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.6.5",
|
|
"@commitlint/config-conventional": "^17.6.5",
|
|
"@swc/core": "^1.3.66",
|
|
"assert": "^2.0.0",
|
|
"buffer": "^5.5.0||^6.0.0",
|
|
"commitizen": "^4.3.0",
|
|
"constants-browserify": "^1.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"crypto-browserify": "^3.12.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"dotenv": "^16.3.1",
|
|
"env-cmd": "^10.1.0",
|
|
"events": "^3.1.0",
|
|
"husky": "^8.0.3",
|
|
"is-ci": "^3.0.1",
|
|
"os-browserify": "^0.3.0",
|
|
"path-browserify": "^1.0.0",
|
|
"process": "^0.11.10",
|
|
"stream-browserify": "^3.0.0",
|
|
"string_decoder": "^1.3.0",
|
|
"ts-node": "^10.9.1"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|