forked from shahradelahi/storage-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.18 KB
/
package.json
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
{
"name": "storage-box",
"version": "1.0.0",
"description": "A memory-based key–value storage for javascript.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"dist/**"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./node": {
"import": "./dist/node.js",
"require": "./dist/node.cjs"
},
"./browser": {
"import": "./dist/browser.js",
"require": "./dist/browser.cjs"
}
},
"types": "./dist",
"typesVersions": {
"*": {
"node": [
"dist/node.d.cts",
"dist/node.d.ts"
],
"browser": [
"dist/browser.d.cts",
"dist/browser.d.ts"
]
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "mocha \"**/*.test.ts\" --retries 2",
"type-check": "tsc --noEmit",
"lint": "pnpm type-check && eslint .",
"lint:fix": "eslint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"ci:publish": "changeset publish",
"prepublishOnly": "pnpm test && pnpm lint && pnpm format:check && pnpm build"
},
"packageManager": "[email protected]",
"dependencies": {
"@msgpack/msgpack": "3.0.0-beta2",
"debounce": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.3",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@sindresorhus/tsconfig": "^5.0.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
},
"license": "MIT",
"author": "Shahrad Elahi <[email protected]> (https://github.com/shahradelahi)",
"contributors": [
"Seven Du <[email protected]> (https://github.com/medz)"
],
"repository": {
"type": "git",
"url": "https://github.com/shahradelahi/storage-box.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"storage",
"key-value",
"memory",
"browser",
"nodejs",
"litehex"
]
}