-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 895 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 895 Bytes
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
{
"name": "lambert-w-function",
"version": "5.0.0",
"description": "An efficient JavaScript implementation for the Lambert W Function on the principial branch.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/howion/lambert-w-function.git"
},
"keywords": [
"math",
"mathematics",
"lambert",
"omega-function",
"typescript"
],
"bugs": {
"url": "https://github.com/howion/lambert-w-function/issues"
},
"scripts": {
"build": "tsup",
"format": "prettier --write ."
},
"author": "howion",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.12.14",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}