-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.66 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.66 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@hiddentao/zip-json",
"version": "1.1.0",
"description": "Zip files and folders into JSON format for Bun native binaries with runtime extraction - perfect for embedding Drizzle ORM scripts",
"keywords": [
"zip",
"json",
"bundle",
"compress",
"archive",
"bun",
"native",
"binary",
"embedded",
"drizzle",
"runtime",
"extraction"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hiddentao/zip-json.git"
},
"homepage": "https://github.com/hiddentao/zip-json",
"bugs": {
"url": "https://github.com/hiddentao/zip-json/issues"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"bin": {
"zip-json": "./bin/zip-json.js"
},
"files": [
"dist",
"bin",
"README.md",
"logo.png",
"LICENSE.md",
"CHANGELOG.md"
],
"scripts": {
"build": "bun run scripts/build.ts",
"build:watch": "bun run scripts/build.ts --watch",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
"test:watch": "bun test --watch",
"lint": "biome check --apply ./src",
"format": "biome format --write ./src ./tests",
"check": "biome check ./src ./tests",
"prepublishOnly": "bun run build && bun run test:coverage",
"postbuild": "chmod +x bin/zip-json.js",
"commit": "cz",
"release": "commit-and-tag-version && git push --follow-tags && bun publish",
"release:minor": "commit-and-tag-version --release-as minor && git push --follow-tags && bun publish",
"release:major": "commit-and-tag-version --release-as major && git push --follow-tags && bun publish",
"release:patch": "commit-and-tag-version --release-as patch && git push --follow-tags && bun publish"
},
"dependencies": {
"commander": "^12.0.0",
"glob": "^10.3.10",
"chalk": "^5.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "latest",
"@types/node": "^22.0.0",
"commit-and-tag-version": "^12.6.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=22.0.0"
},
"engineStrict": true,
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}