-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "@alttiri/base85",
"version": "1.8.0",
"description": "Pretty fast base85 JavaScript library",
"homepage": "https://github.com/alttiri/base85",
"keywords": [
"base85",
"ascii85",
"z85"
],
"license": "MIT",
"type": "module",
"main": "base85.js",
"types": "base85.d.ts",
"files": [
"base85.js",
"base85.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/alttiri/base85.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"compile-ts": "tsc --build",
"compile-ts-watch": "tsc --build --watch",
"clean-ts": "tsc --build --clean",
"#": "",
"test-publish": "tsc --build && npm pack",
"publish-npm": "tsc --build && npm publish --registry=https://registry.npmjs.org",
"publish-ghp": "tsc --build && npm publish --registry=https://npm.pkg.github.com",
"##": "",
"unpublish-npm": "npm unpublish @alttiri/[email protected] --registry=https://registry.npmjs.org",
"###": "",
"login-npm": "npm login --registry=https://registry.npmjs.org",
"login-ghp": "npm login --registry=https://npm.pkg.github.com"
},
"devDependencies": {
"@alttiri/util-node-js": "2.1.1-20240725",
"fflate": "0.8.2",
"typescript": "5.5.4"
}
}