-
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.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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": "is-deep-immutable",
"version": "1.0.0",
"description": "TypeScript-first utility to check deep immutability in JavaScript objects",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": [
"*.js",
"*.d.ts",
"README.md"
],
"scripts": {
"build": "tsc && npm run copy-dist",
"copy-dist": "cp dist/* . && echo 'Copied dist files to root'",
"clean": "rm -f *.js *.d.ts *.js.map",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test",
"postpublish": "npm run clean"
},
"keywords": [
"immutable",
"typescript",
"deep",
"freeze",
"readonly"
],
"author": "opensly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opensly/is-deep-immutable.git"
},
"bugs": {
"url": "https://github.com/opensly/is-deep-immutable/issues"
},
"homepage": "https://github.com/opensly/is-deep-immutable#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^1.0.0"
}
}