-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
94 lines (94 loc) · 2.76 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
92
93
94
{
"name": "@joshdb/core",
"version": "2.0.0",
"description": "JavaScript Object Storage Helper",
"author": "Évelyne Lachance <[email protected]> (https://evie.codes/)",
"contributors": [
"Hezekiah Hendry <[email protected]>",
"DanCodes <[email protected]> (https://dancodes.online/)",
"Wilson (https://wilson.antti.codes/)"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"clean": "rimraf coverage dist docs node_modules/.cache",
"docs": "typedoc-json-parser",
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write {src,tests}/**/*.ts",
"test": "vitest run",
"build": "tsup",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"update": "yarn upgrade-interactive",
"postinstall": "husky",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@joshdb/auto-ensure": "2.0.0-next.e20aea6.0",
"@joshdb/map": "2.0.0-next.d8f6dae.0",
"@joshdb/provider": "2.0.0-next.b88aca0.0",
"@sapphire/utilities": "^3.18.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^3.0.3",
"@favware/npm-deprecate": "^1.0.7",
"@joshdb/eslint-config": "2.0.0-next.b88aca0.0",
"@joshdb/prettier-config": "2.0.0-next.b88aca0.0",
"@joshdb/ts-config": "2.0.0-next.b88aca0.0",
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typedoc-json-parser": "^10.2.0",
"typescript": "^5.7.3",
"vitest": "1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josh-development/core.git"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=20",
"npm": ">=6"
},
"keywords": [],
"bugs": {
"url": "https://github.com/josh-development/core/issues"
},
"homepage": "https://josh.evie.dev",
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "eslint --fix --ext ts"
},
"prettier": "@joshdb/prettier-config",
"packageManager": "[email protected]"
}