-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "@mryhryki/simple-encryption",
"description": "Simple encryption/decryption library for Node.js/Deno/Browser.",
"version": "0.1.4",
"license": "MIT",
"main": "src/index.js",
"type": "module",
"types": "src/types.d.ts",
"author": {
"name": "mryhryki",
"url": "https://github.com/mryhryki"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mryhryki/simple-encryption.git"
},
"homepage": "https://github.com/mryhryki/simple-encryption",
"bugs": {
"url": "https://github.com/mryhryki/simple-encryption/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"simple",
"encryption",
"decryption",
"crypto"
],
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
},
"scripts": {
"build": "esbuild --bundle --minify --platform=browser --format=esm --outfile=./src/index.js ./src/index.ts",
"build:test": "esbuild --bundle --minify --platform=browser --format=esm --outfile=./src/test/index.js ./src/test/index.ts",
"check": "npm run type && npm run lint && npm run test && npm run build",
"type": "tsc --isolatedDeclarations",
"type:watch": "tsc --isolatedDeclarations --watch",
"format": "biome check --write ./src/",
"lint": "biome check ./src/",
"test": "vitest run --dir ./src/ --disable-console-intercept",
"test:watch": "vitest watch --dir ./src/ --disable-console-intercept"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"esbuild": "0.24.0",
"typescript": "5.6.3",
"vitest": "2.1.9"
}
}