-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@haskou/value-objects",
"version": "2.13.1",
"description": "TypeScript value objects for validated, immutable primitive values and small domain-safe data structures.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"license": "MIT",
"engines": {
"node": ">=20.19.0"
},
"keywords": [
"value-object",
"value-objects",
"typescript",
"validation",
"validated-types",
"immutable",
"immutability",
"type-safety",
"domain-primitives",
"primitive-obsession",
"ddd",
"domain-driven-design",
"email-validation",
"uuid",
"hash",
"crypto",
"aes-256-gcm",
"ed25519",
"x25519",
"scrypt"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haskou/value-objects.git"
},
"bugs": {
"url": "https://github.com/haskou/value-objects/issues"
},
"homepage": "https://haskou.github.io/value-objects/",
"scripts": {
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "yarn lint && yarn test:unit",
"test:unit": "jest --runInBand",
"test:coverage": "NODE_ENV=test jest --collect-coverage",
"build": "rm -rf dist/ && tsc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress build docs && vitepress preview docs"
},
"dependencies": {
"@noble/ciphers": "^2.2.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.0.1",
"buffer": "^6.0.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@haskou/eslint-config": "^0.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.1",
"eslint": "^10.5.0",
"jest": "^30.4.2",
"jest-extended": "^7.0.0",
"prettier": "^3.8.4",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3",
"vitepress": "^1.6.4",
"vue": "^3.5.39"
}
}