-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.29 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "constancy",
"version": "3.0.1",
"description": "Zero-dependency immutability toolkit: freeze, view, snapshot, vault, and integrity verification",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"ci": "npm ci",
"build": "tsup",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"fuzz": "npx jazzer",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"keywords": [
"constancy",
"freeze",
"deep-freeze",
"deepfreeze",
"immutable",
"immutability",
"readonly",
"object-freeze",
"frozen",
"typescript",
"zero-dependency",
"state-management",
"proxy",
"tamper-proof",
"vault",
"snapshot",
"security",
"deep-clone",
"runtime-integrity"
],
"homepage": "https://github.com/DungGramer/constancy#readme",
"repository": {
"type": "git",
"url": "https://github.com/DungGramer/constancy.git"
},
"bugs": {
"url": "https://github.com/DungGramer/constancy/issues"
},
"author": {
"name": "DungGramer",
"email": "dung.dev.gramer@gmail.com"
},
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/dunggramer"
},
{
"type": "patreon",
"url": "https://patreon.com/dunggramer"
},
{
"type": "paypal",
"url": "https://paypal.me/dunggramer"
},
{
"type": "thanks_dev",
"url": "https://thanks.dev/u/gh/DungGramer"
}
],
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@jazzer.js/core": "^4.0.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"mermaid": "11.14.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitepress": "1.6.4",
"vitepress-plugin-mermaid": "2.0.17",
"vitest": "^4.1.4"
}
}