-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
66
{
"name": "@crazyorr/loan",
"version": "1.1.1",
"description": "Interest calculation of loans",
"main": "./dist/loan.js",
"module": "./dist/loan.mjs",
"types": "./dist/loan.d.ts",
"exports": {
"types": "./dist/loan.d.ts",
"import": "./dist/loan.mjs",
"default": "./dist/loan.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/CrazyOrr/loan.js.git"
},
"bugs": {
"url": "https://github.com/CrazyOrr/loan.js/issues"
},
"homepage": "https://ic.yolo.blue/",
"keywords": [
"interest",
"loan",
"calculator"
],
"author": {
"name": "Lei Wang",
"email": "wanglei021212@gmail.com",
"url": "https://github.com/CrazyOrr"
},
"license": "ISC",
"scripts": {
"dev": "vite --host",
"build": "rimraf dist lib && tsc && vite build && api-extractor run --local --verbose",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"check-spelling": "cspell \"**\"",
"prepare": "husky",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.58.0",
"@types/node": "^24.12.0",
"@vitest/coverage-v8": "^4.1.2",
"cspell": "^9.7.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}