-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.68 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
{
"name": "@rjweb/utils",
"version": "1.12.27",
"description": "Easy and Lightweight Utilities",
"module": "lib/esm/index.js",
"main": "lib/cjs/index.js",
"types": "lib/typings/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rm -rf lib && tsc && esbuild `find src -type f -name \"*.ts\"` --platform='node' --ignore-annotations --format='cjs' --outdir='lib/cjs' && esbuild `find src -type f -name \"*.ts\"` --platform='node' --ignore-annotations --format='esm' --outdir='lib/esm' && cp package.json lib/cjs/pckg.json && cp package.json lib/esm/pckg.json",
"docs": "rm -rf docs && typedoc --includeVersion --out docs src/index.ts --plugin typedoc-material-theme --themeColor '#cb9820' && find docs -type f -name '*.html' -exec sed -i -e 's|<meta charSet=\"utf-8\"/>|<meta charSet=\"utf-8\"/><link rel=\"icon\" type=\"image/svg+xml\" href=\"https://cdn.rjns.dev/rjweb/icon.svg\">|' {} + && chmod -R a+rw docs",
"test": "yarn build && node test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x7d8/rjweb-utils.git"
},
"keywords": [
"easy",
"utilities",
"file",
"sync",
"async",
"crypto",
"hashing",
"hash",
"password",
"binary"
],
"author": "0x7d8 (Robert Jansen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/0x7d8/rjweb-utils/issues"
},
"homepage": "https://github.com/0x7d8/rjweb-utils#readme",
"devDependencies": {
"@rjweb/utils": "link:",
"@types/node": "^20.16.11",
"esbuild": "^0.20.2",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.6.3"
},
"dependencies": {
"ts-arithmetic": "^0.1.1"
}
}