-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.56 KB
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
{
"name": "bitsocial-spam-blocker",
"private": true,
"license": "UNLICENSED",
"type": "module",
"packageManager": "yarn@4.13.0",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspace @bitsocial/spam-blocker-shared build && yarn workspace @bitsocial/spam-blocker-challenge build",
"test": "yarn workspace @bitsocial/spam-blocker-challenge test",
"type-check": "yarn workspace @bitsocial/spam-blocker-shared type-check && yarn workspace @bitsocial/spam-blocker-challenge type-check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"commit": "cz",
"release:challenge": "cd packages/challenge && HUSKY=0 release-it --config .release-it.json"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.3.1",
"@release-it/conventional-changelog": "10.0.1",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"prettier": "3.8.1",
"release-it": "19.2.3",
"typescript": "6.0.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@pkcprotocol/pkc-js": "0.0.18"
},
"overrides": {
"@pkcprotocol/pkc-js": "$@pkcprotocol/pkc-js",
"@mintpass/challenge": "npm:empty-npm-package@1.0.0",
"skia-canvas": "npm:empty-npm-package@1.0.0"
}
}