This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.9 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
{
"name": "read-vn-number",
"version": "3.2.1",
"description": "Read Vietnamese number like a Vietnamese",
"sideEffects": false,
"main": "cjs/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"exports": {
"import": "./es/index.js",
"require": "./cjs/index.js"
},
"files": [
"cjs",
"es",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/hckhanh/read-vn-number.git"
},
"keywords": [
"reader",
"read",
"number",
"vn",
"vietnam",
"vietnamese",
"vietnamese-language",
"vietnamese-currency",
"currency",
"vnd",
"vn-lang",
"lang",
"language",
"languages",
"language-processing",
"text-generation",
"helper",
"helpers",
"helpers-library",
"helper-tool",
"helper-methods",
"helper-class",
"helper-functions",
"helper-script"
],
"author": "Khanh Hoang",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"build:cjs": "tsc --outDir cjs",
"build:es": "tsc --module esnext --outDir es",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
"test": "vitest related src/**/*.ts",
"test:deps": "depcruise --config .dependency-cruiser.js src",
"test:prettier": "prettier --check .",
"test:eslint": "eslint src --ext .ts --max-warnings 10",
"test:skypack": "package-check",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@skypack/package-check": "0.2.2",
"@types/node": "20.11.20",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"dependency-cruiser": "16.2.1",
"eslint": "8.57.0",
"husky": "9.0.11",
"prettier": "3.2.5",
"semantic-release": "23.0.2",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
}
}