-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 1.81 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
{
"name": "@shelf/fast-chunk-string",
"version": "4.0.0",
"description": "Chunk string into equal substrings with unicode support",
"keywords": [
"string",
"split",
"chunk",
"unicode",
"utf",
"utf8",
"substring"
],
"repository": "shelfio/fast-chunk-string",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "https://shelf.io"
},
"sideEffects": false,
"type": "module",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"benchmark": "tsx benchmark.ts",
"build": "rm -rf lib/ && tsc",
"coverage": "jest --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --quiet",
"test": "jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": [
"prettier --write --ignore-path=./.eslintignore"
],
"*.{ts,js}": [
"eslint --fix"
]
},
"resolutions": {
"strip-ansi": "6.0.1",
"wrap-ansi": "7.0.0",
"string-width": "4.2.3"
},
"dependencies": {
"runes": "0.4.3",
"string-length": "6.0.0"
},
"devDependencies": {
"@shelf/eslint-config": "4.4.0",
"@shelf/tsconfig": "0.1.0",
"@swc/core": "1.10.7",
"@swc/jest": "0.2.37",
"@types/benchmark": "2.1.5",
"@types/jest": "29.5.14",
"@types/node": "18",
"@types/runes": "0.4.3",
"benny": "3.7.1",
"eslint": "9.18.0",
"fast-lorem-ipsum": "1.2.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"ts-jest-resolver": "2.0.1",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}