-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 950 Bytes
/
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
{
"author": "intfract",
"name": "defract",
"description": "A modern JavaScript utility library that delivers functions for data structures, calculations, and more! ",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/intfract/defract.git"
},
"bugs": {
"url": "https://github.com/intfract/defract/issues"
},
"keywords": [
"array",
"arrays",
"ndarray",
"object",
"objects",
"logic",
"countif",
"defract",
"fract"
],
"homepage": "https://github.com/intfract/",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"devDependencies": {
"@types/node": "^18.0.3",
"tsup": "^6.2.1"
},
"license": "MIT",
"scripts": {
"pack": "tsup src/index.ts --format cjs,esm",
"esm": "tsup src/index.ts --format cjs,esm && node index.mjs",
"cjs": "node index.js",
"go": "tsup src/index.ts --format cjs,esm && node index.js"
}
}