-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.72 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": "conversion-library",
"version": "0.0.13",
"private": false,
"license": "MIT",
"keywords": [
"conversion",
"conversion-library",
"Decimal conversion",
"Data Structure",
"Color conversion",
"Int and roman"
],
"description": "conversion library, example as octalToBinary, eightToTwo, binaryToOctal, twoToEight, decimalToBinary, tenToTwo, binaryToDecimal, twoToTen, decimalToOtherBase, tenToOther, otherBaseToDecimal, otherToTen, ListNode, arrayToListNode, listNodeToArray, combinationArrangement, elTableRowSpan, hexRrggbbToHexRgb, hexRgbToHexRrggbb, hexRgbsToRgbArray, hexRgbsToRgbObject, hexRgbsToRgb, rgbToRgbArray, rgbToRgbObject, rgbToHexRgbs, intToRoman, intArrayToRomanArray, romanToInt, romanArrayToIntArray, change-case, change-case/keys, sponge-case, swap-case, title-case",
"author": "fxss5201",
"repository": {
"type": "git",
"url": "git@github.com:fxss5201/conversion-library.git"
},
"type": "module",
"files": [
"dist",
"types"
],
"main": "./dist/conversion-library.umd.cjs",
"module": "./dist/conversion-library.js",
"types": "./types/main.d.ts",
"exports": {
"types": "./types/main.d.ts",
"import": "./dist/conversion-library.js",
"require": "./dist/conversion-library.umd.cjs"
},
"scripts": {
"dev": "vite",
"test": "vitest --ui",
"build": "tsc && vite build",
"predocs": "typedoc",
"docs:dev": "typedoc --sourceLinkTemplate https://github.com/fxss5201/conversion-library/blob/main/{path}#L{line} && vitepress dev docs",
"docs:build": "typedoc --sourceLinkTemplate https://github.com/fxss5201/conversion-library/blob/main/{path}#L{line} && vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "commit-and-tag-version",
"cz": "czg"
},
"commit-and-tag-version": {
"releaseCount": 0
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.14.11",
"@types/validator": "^13.12.2",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.3",
"commit-and-tag-version": "^12.4.1",
"consola": "^3.2.3",
"coveralls": "^3.1.1",
"cz-git": "^1.9.3",
"czg": "^1.9.3",
"flexsearch": "^0.7.43",
"tsx": "^4.16.2",
"typedoc": "^0.26.4",
"typedoc-plugin-markdown": "^4.2.1",
"typedoc-vitepress-theme": "^1.0.1",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^4.3.0",
"vitepress": "^1.4.2",
"vitest": "^2.0.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"change-case": "^5.4.4",
"lodash.clonedeep": "^4.5.0",
"sponge-case": "^2.0.3",
"swap-case": "^3.0.3",
"title-case": "^4.3.2",
"validator": "^13.12.0"
}
}