-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.76 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
83
84
85
86
{
"name": "@kabeep/forex",
"description": "A JavaScript foreign exchange library via fawazahmed0's API",
"version": "1.0.1",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"node": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"lint": "biome check src --write",
"lint:staged": "biome check src --write --staged",
"lint:changed": "biome check src --write --changed",
"lint-staged": "lint-staged",
"test": "vitest run",
"test:changed": "vitest run --changed",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"build:clean": "rimraf dist",
"build": "npm run build:clean && tsup",
"build:watch": "tsup --watch",
"build:stats": "npm run build && cloc src && size-limit dist/index.js",
"build:docs": "npm run build && typedoc && node scripts/build-app.js"
},
"author": "Zhang Zixin (kabeep)",
"homepage": "https://kabeep.github.io/forex/",
"repository": "[email protected]:kabeep/forex.git",
"bugs": "https://github.com/kabeep/forex/issue",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@size-limit/esbuild": "^11.1.6",
"@size-limit/file": "^11.1.6",
"@size-limit/time": "^11.1.6",
"@types/node": "^22.10.1",
"@vitest/coverage-istanbul": "^2.1.6",
"@vitest/ui": "^2.1.6",
"cloc": "^2.2.0-cloc",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"rimraf": "^5.0.10",
"size-limit": "^11.1.6",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typedoc": "~0.26.11",
"typedoc-material-theme": "^1.2.0",
"typedoc-plugin-include-example": "^2.0.2",
"typedoc-plugin-inline-sources": "^1.1.0",
"typedoc-plugin-mdn-links": "^4.0.2",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-rename-documents": "^1.0.0",
"typedoc-plugin-replace-text": "^4.0.0",
"typedoc-plugin-version-header": "^1.0.0",
"typescript": "~5.6.3",
"vitest": "^2.1.6"
},
"keywords": [
"forex",
"foreign",
"exchange",
"currency",
"fx"
],
"engines": {
"node": ">=18"
},
"license": "MIT"
}