-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.69 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
{
"name": "deep-key-mirror",
"version": "0.8.0",
"description": "Alternative to React keyMirror",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"packageManager": "pnpm@11.1.1",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rfv dist",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"fix": "biome check --write",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"docs": "typedoc --out docs --exclude '**/index.ts' src/ && touch docs/.nojekyll",
"docs:publish": "pnpm run docs && gh-pages -d docs --dotfiles",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkqubo/deep-key-mirror.git"
},
"keywords": [
"keymirror",
"key-mirror",
"deep-key-mirror",
"constants",
"enum",
"mirror",
"object-keys",
"typescript",
"react"
],
"author": "tkqubo",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkqubo/deep-key-mirror/issues"
},
"homepage": "https://github.com/tkqubo/deep-key-mirror",
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@vitest/coverage-v8": "^4.1.0",
"gh-pages": "^6.0.0",
"tsdown": "^0.22.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.1.0"
},
"files": [
"dist"
]
}