-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.02 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.02 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
{
"name": "numerica",
"version": "0.5.0",
"description": "A utility library for number formatting and string-to-number parsing.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"lint": "eslint src --fix --max-warnings=0 && echo No linting issues found.",
"docs:generate": "typedoc",
"docs:publish": "npm run docs:generate && echo numerica.js.org > docs/CNAME && git add docs && git diff --cached --quiet || (git commit -m \"docs: update documentation\" && git push)",
"build": "tsup src/index.ts --format cjs,esm --dts && npm run docs:publish && git add . && git commit -m \"build: compile ts and generate docs\"",
"release:patch": "npm version patch -m \"v%s - patch release\" && npm run publish:all",
"release:minor": "npm version minor -m \"v%s - minor release\" && npm run publish:all",
"release:major": "npm version major -m \"v%s - major release\" && npm run publish:all",
"publish:all": "git push && git push --tags && npm publish"
},
"keywords": [
"number",
"numbers",
"numerica",
"numerals",
"format",
"frontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alyshukry/numerica.git"
},
"author": "Aly Shukry <alyshukry.dev@gmail.com> (https://alyshukry.works)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@eslint/json": "^0.13.2",
"docdash": "^2.0.2",
"documentation": "^14.0.3",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"jsdoc": "^4.0.5",
"tsup": "^8.5.0",
"typedoc": "^0.28.13",
"typedoc-github-theme": "^0.3.1",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
}
}