forked from CryptKeeperZK/crypt-keeper-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "crypt-keeper-extension",
"private": true,
"version": "0.1.0-beta.1",
"description": "Crypt-Keeper Extension, zero knowledge identity management and proof generation tool",
"main": "index.js",
"pnpm": {
"packageManager": "pnpm"
},
"scripts": {
"demo:start": "pnpm exec nx run-many --target=start --output-style=stream",
"merkle:start": "nx run-many --target=merkle --output-style=stream",
"build": "pnpm exec nx run-many --target=build --output-style=stream",
"dev": "pnpm exec nx run-many --target=dev --output-style=stream",
"build:e2e": "pnpm exec nx run-many --target=build:e2e --output-style=stream",
"build:chrome": "cross-env TARGET=chrome MANIFEST_VERSION=3 pnpm run build",
"dev:chrome": "cross-env TARGET=chrome MANIFEST_VERSION=3 pnpm run dev",
"build:firefox": "cross-env TARGET=firefox MANIFEST_VERSION=2 pnpm run build",
"dev:firefox": "cross-env TARGET=firefox MANIFEST_VERSION=2 pnpm run dev",
"publish:packages": "pnpm exec nx run-many --target=publish:package --output-style=stream --parallel=1",
"merkle": "pnpm exec nx run-many --target=merkle --output-style=stream",
"test": "pnpm exec nx run-many --target=test --output-style=stream",
"test:coverage": "pnpm exec nx run-many --target=test:coverage --output-style=stream",
"e2e": "pnpm exec nx run-many --target=e2e --output-style=stream",
"e2e:ci": "pnpm exec nx run-many --target=e2e:ci --output-style=stream",
"health-check": "pnpm exec nx run-many --target=health-check --output-style=stream",
"lint": "pnpm exec nx run-many --target=lint --output-style=stream",
"lint:fix": "pnpm exec nx run-many --target=lint:fix --output-style=stream",
"prettier": "pnpm exec nx run-many --target=prettier --output-style=stream",
"prettier:fix": "pnpm exec nx run-many --target=prettier:fix --output-style=stream",
"types": "pnpm exec nx run-many --target=types --output-style=stream",
"commit": "cz",
"release": "pnpm exec nx run-many --target=version --verbose --parallel=1",
"release:dry-run": "pnpm run release -- --dryRun",
"githook:precommit": "pnpm exec nx run-many --target=githook:precommit --output-style=stream",
"githook:prepush": "pnpm exec nx run-many --target=githook:prepush --output-style=stream",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/CryptKeeperZK/crypt-keeper-extension"
},
"keywords": [
"react",
"typescript",
"chrome",
"firefox",
"extension"
],
"author": "Privacy and Scaling explorations team",
"license": "MIT",
"bugs": {
"url": "https://github.com/CryptKeeperZK/crypt-keeper-extension/issues/new/choose"
},
"homepage": "https://github.com/CryptKeeperZK/crypt-keeper-extension",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@cryptkeeperzk/manifest-bump": "workspace:^",
"@jscutlery/semver": "^4.1.0",
"@nx/js": "^17.1.3",
"@playwright/test": "^1.37.1",
"@swc/core": "^1.3.99",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"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",
"nx": "17.1.3",
"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-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "18",
"pnpm": "8"
}
}