-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@bitsocial/voucher-challenge",
"version": "0.1.3",
"description": "Standalone voucher challenge for pkc-js",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"AGENTS.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"prepare": "husky",
"release": "HUSKY=0 release-it --config config/.release-it.json"
},
"keywords": [
"bitsocial",
"plebbit",
"pkc",
"challenge",
"voucher"
],
"author": "Rinse",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/bitsocialnet/voucher-challenge.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@pkcprotocol/pkc-js": "0.0.11",
"@release-it/conventional-changelog": "10.0.5",
"@types/node": "25.3.5",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"release-it": "19.2.4",
"remeda": "2.29.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}