-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "xfloat",
"version": "0.1.0-alpha.1",
"description": "Tiny, pure JavaScript arbitrary-precision binary floating point numbers",
"license": "MIT",
"author": "Will Temple (will at wtemple dot net)",
"keywords": [
"xfloat",
"float",
"binary",
"arbitrary",
"precision",
"number",
"math"
],
"homepage": "https://github.com/willmtemple/xfloat",
"type": "module",
"main": "dist/index.min.js",
"types": "dist/index.min.d.ts",
"exports": {
".": {
"import": "./dist/index.min.js",
"require": "./dist/index.min.js"
}
},
"files": [
"dist/index.min.js",
"dist/index.min.js.map",
"dist/index.min.d.ts",
"README.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"build": "npx tsc && npm run build:minify && npm run build:copy-types",
"build:copy-types": "shx cp dist/src/index.d.ts dist/index.min.d.ts",
"build:minify": "terser dist/src/index.js --compress --mangle --source-map \"content=dist/src/index.js.map,filename=dist/src/index.min.js.map,url=index.min.js.map\" -o dist/index.min.js",
"clean": "shx rm -rf dist",
"test:fuzz": "tsx test/fuzz.ts"
},
"devDependencies": {
"shx": "^0.4.0",
"terser": "^5.39.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}