-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@aliou/sh",
"version": "0.3.1",
"description": "Shell parser/AST for POSIX/Bash/mksh/zsh (WIP)",
"repository": {
"type": "git",
"url": "https://github.com/aliou/sh.git"
},
"license": "UNLICENSED",
"publishConfig": {
"access": "public"
},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=24"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"skills"
],
"scripts": {
"format": "biome check --write",
"lint": "biome check",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"build:js": "rolldown -c",
"build:types": "tsc -p tsconfig.build.json",
"build": "pnpm build:js && pnpm build:types",
"changeset": "changeset",
"prepack": "pnpm build"
},
"devDependencies": {
"@aliou/biome-plugins": "0.12.0",
"@biomejs/biome": "^2.5.5",
"@changesets/cli": "^2.29.8",
"@types/node": "^24.0.0",
"lefthook": "^1.11.0",
"rolldown": "^1.0.0-rc.1",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
},
"packageManager": "pnpm@11.17.0"
}