-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.62 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": "wcslice",
"version": "0.0.3",
"description": "",
"keywords": [
"wide character",
"trim",
"split",
"slice",
"wc",
"wcs",
"width",
"wcwidth",
"wcswidth"
],
"license": "MIT",
"author": "Frourio Inc.",
"main": "build/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"build-dev": "tsc -p ./tsconfig.build.json --watch",
"check": "run-s check:*",
"check-dev": "run-p check-dev:*",
"check-dev:root": "pnpm run check:root -- --watch",
"check-dev:test": "pnpm run check:test -- --watch",
"check:root": "tsc --noEmit",
"check:test": "cd test && tsc --noEmit",
"coverage-to-html": "vitest run --coverage",
"dev": "run-p test-dev build-dev",
"test": "vitest run --coverage",
"test-dev": "vitest dev",
"lint": "eslint --ext .ts,.js,.tsx . && prettier --check \"./**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --ext .ts,.js,.tsx . --fix && prettier --check \"./**/*.{js,ts,tsx}\" --write"
},
"dependencies": {
"wcwidth": "*"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.3",
"@changesets/cli": "^2.21.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@types/wcwidth": "^1.0.0",
"c8": "^7.11.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"notios": "^0.0.4",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"typescript": "~4.6",
"vitest": "^0.6.0"
}
}