-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.18 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
{
"name": "@dunkelhaiser/numeri-romani",
"version": "1.0.3",
"description": "Library for work with Roman numbers.",
"private": false,
"keywords": [
"convert",
"number",
"numeral",
"numerals",
"roman",
"arabic",
"romanize",
"utils",
"tools"
],
"author": "Kyrylo Tymchyshyn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dunkelhaiser/Numeri-Romani.git"
},
"homepage": "https://github.com/Dunkelhaiser/Numeri-Romani",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/dunkelhaiser"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier -uw --cache --ignore-path .gitignore .",
"test": "vitest run",
"test:watch": "vitest",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*": "prettier -uw --cache",
"./src/**/*.{ts,tsx}": "eslint --fix --report-unused-disable-directives --max-warnings 0"
},
"devDependencies": {
"@changesets/cli": "^2.27.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.6",
"eslint-plugin-vitest": "^0.3.24",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}