-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "@toneflix/money",
"type": "module",
"version": "0.1.5",
"description": "A simple and efficient money and currency conversion and formatting tool for JavaScript and TypeScript projects.",
"main": "./dist/money.cjs",
"private": false,
"homepage": "https://toneflix.github.io/money",
"repository": {
"url": "https://github.com/toneflix/money.git",
"type": "git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/money.js",
"require": "./dist/money.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"money",
"currency",
"conversion",
"tool",
"forex",
"formatting",
"dollar",
"render",
"h3ravel",
"toneflix"
],
"scripts": {
"test": "pnpm vitest --no-isolate",
"lint": "eslint . --ext .ts --ext .js",
"build": "tsdown",
"release": "pnpm build && pnpm changeset version && pnpm changeset publish",
"publish-it": "pnpm build && pnpm publish --tag latest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.39.2",
"@eslint/markdown": "^7.5.1",
"eslint": "^9.39.2",
"tsdown": "^0.15.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.53.0",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
},
"module": "./dist/money.js",
"types": "./dist/money.d.cts"
}