-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 KB
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
{
"name": "meaw",
"version": "10.0.0",
"description": "Utilities for Unicode East Asian Width",
"keywords": [
"unicode",
"east",
"asian",
"width"
],
"repository": "https://github.com/susisu/meaw.git",
"author": "Susisu <susisu2413@yahoo.co.jp>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
"files": [
"lib",
"src",
"!src/**/*.spec.ts",
"!src/**/__tests__"
],
"scripts": {
"fetch": "tsx scripts/fetch.ts",
"generate": "tsx scripts/generate.ts",
"generate-test": "tsx scripts/generate.ts test",
"dump-eaw-version": "tsx scripts/dump-eaw-version.ts",
"format": "prettier --write '*.js' scripts src",
"format:check": "prettier --check '*.js' scripts src",
"lint": "eslint --fix '*.js' scripts src",
"lint:check": "eslint '*.js' scripts src",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --coverage",
"test:dev": "vitest dev --coverage.enabled --coverage.reporter=text",
"build": "tsup",
"prepublishOnly": "run-s generate-test format:check lint:check typecheck test build"
},
"devDependencies": {
"@susisu/eslint-config": "^0.0.100",
"@types/node": "^24.9.2",
"@vitest/coverage-v8": "^4.0.6",
"@vitest/eslint-plugin": "^1.4.0",
"eslint": "^9.39.0",
"globals": "^16.5.0",
"npm-run-all2": "^8.0.4",
"p-retry": "^7.1.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"vitest": "^4.0.6"
}
}