-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@frsource/base64",
"version": "1.0.114",
"description": "base64 encoder/decoder with UTF-8 support 📔",
"repository": "https://github.com/FRSOURCE/base64.git",
"homepage": "http://www.webtoolkit.info/javascript_base64.html",
"scripts": {
"build": "del-cli dist && microbundle index.ts --target node -f cjs,modern",
"lint": "eslint . && prettier . --check",
"fix": "pnpm eslint --fix && prettier . --write",
"prepack": "pnpm build",
"release": "semantic-release",
"release:ci": "pnpm release --yes",
"release:test": "pnpm release --no-git-tag-version --no-push --skip-npm",
"test": "vitest run",
"test:dev": "vitest --ui --open"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./*": "./*.js"
},
"keywords": [
"base64",
"utf-8",
"encoder",
"decoder",
"webtoolkit",
"webtoolkit.base64"
],
"author": "Jakub Freisler <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@frsource/eslint-config": "1.33.0",
"@frsource/prettier-config": "1.21.0",
"@frsource/semantic-release-config": "1.38.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "2.1.8",
"del-cli": "6.0.0",
"eslint": "9.18.0",
"globals": "15.14.0",
"microbundle": "0.15.1",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"funding": "https://buymeacoffee.com/frsource"
}