-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "pkv.js",
"version": "0.0.3",
"license": "MIT",
"type": "module",
"description": "Partial Key Verification Library for JS/TS. Serial number generation scheme for offline key validation.",
"keywords": ["pkv", "partial-key-verification", "verification", "typescript", "javascript", "library"],
"author":"Krystian Duma",
"repository": {
"type": "git",
"url": "git+https://github.com/kduma-OSS/JS-Partial-Key-Verification.git"
},
"homepage": "https://opensource.duma.sh/libraries/js/partial-key-verification",
"scripts": {
"dev": "vite",
"build": "vite build && tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"main": "./dist/pkv.es.js",
"module": "./dist/pkv.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/pkv.es.js",
"default": "./dist/pkv.es.js"
}
},
"unpkg": "./dist/pkv.umd.js",
"jsdelivr": "./dist/pkv.umd.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^24.3.1",
"typescript": "^5.6.2",
"vite": "^5.4.0",
"vitest": "^2.0.5",
"jsdom": "^26.1.0"
}
}