-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "segment-string",
"version": "0.0.8",
"description": "A lightweight wrapper around Intl.Segmenter for segment-aware string operations",
"repository": {
"type": "git",
"url": "git+https://github.com/Not-Jayden/segment-string.git"
},
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"lint:knip": "knip",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@release-it/conventional-changelog": "^9.0.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.9",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/eslint-plugin": "^1.1.7",
"console-fail-test": "^0.5.0",
"eslint": "^9.13.0",
"eslint-plugin-n": "^17.11.1",
"husky": "^9.1.6",
"knip": "^5.34.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-sh": "^0.14.0",
"release-it": "^17.10.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18.3.0"
}
}