forked from saghul/txiki.js
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.34 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
{
"name": "txiki.js",
"version": "0.0.0",
"description": "Utilities for txiki.js",
"private": true,
"scripts": {
"postinstall": "patch-package",
"bundle": "esbuild src/js/index.js --bundle --outfile=src/js/bundle.js --target=es2020 --platform=neutral --format=esm --main-fields=main,module",
"stdlib": "esbuild src/js/stdlib/index.js --bundle --outfile=src/js/std.js --target=es2020 --platform=neutral --format=esm --main-fields=main,module",
"api-docs": "typedoc --tsconfig docs/tsconfig.doc.json",
"api-docs-watch": "typedoc --tsconfig docs/tsconfig.doc.json --watch",
"deploy-api-docs": "gh-pages -d docs/api -e api -u \"github-actions-bot <support+actions@github.com>\""
},
"license": "MIT",
"dependencies": {
"abortcontroller-polyfill": "^1.7.3",
"core-js": "^3.20.3",
"esbuild": "^0.14.11",
"getopts": "^2.3.0",
"gh-pages": "^3.2.3",
"ipaddr.js": "^2.0.1",
"js-md5": "^0.7.3",
"js-sha1": "^0.6.0",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"js-sha512": "^0.8.0",
"patch-package": "^6.4.7",
"path-browserify": "^1.0.1",
"queue-microtask": "^1.2.3",
"text-encoding": "^0.7.0",
"typedoc": "^0.22.12",
"urlpattern-polyfill": "^1.0.0-rc4",
"util": "^0.12.4",
"uuid": "^8.3.2",
"web-streams-polyfill": "^3.2.0",
"whatwg-fetch": "^3.6.2"
}
}