-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "@pierre/just-code-storage",
"version": "0.1.1",
"description": "A git-flavored just-bash command backed by the code.storage SDK.",
"license": "Apache-2.0",
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsdown --clean",
"dev": "tsdown --watch --log-level error",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "bun test",
"tsc": "tsc --noEmit --pretty",
"prepublishOnly": "bun run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@pierre/storage": "^1.9.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.0.3",
"just-bash": "^3.0.1",
"oxfmt": "^0.52.0",
"tsdown": "^0.22.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"just-bash": "^3.0.1"
}
}