-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.19 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
{
"name": "better-serialize",
"version": "2.0.0",
"description": "A better way to serialize",
"author": "Hezekiah Hendry <hezekiah.hendry@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"clean": "rimraf dist 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",
"update": "yarn upgrade-interactive",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"postinstall": "husky install",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@favware/cliff-jumper": "^4.0.3",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^20.16.0",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.10",
"tsup": "^8.2.4",
"typedoc": "^0.26.5",
"typedoc-json-parser": "^10.1.5",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealShadowNova/better-serialize.git"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=20",
"npm": ">=6"
},
"keywords": [],
"bugs": {
"url": "https://github.com/RealShadowNova/better-serialize/issues"
},
"homepage": "https://github.com/RealShadowNova/better-serialize",
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "eslint --fix --ext ts"
}
}