-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "@s21toolkit/cli",
"type": "module",
"version": "0.15.0",
"engines": {
"node": ">=20.0.0"
},
"files": [
"build/dist",
"readme.md"
],
"scripts": {
"lint:tsc": "tsc",
"lint:biome": "biome check .",
"lint": "pnpm lint:biome && pnpm lint:tsc",
"fix:biome": "biome check --write .",
"fix": "pnpm fix:biome",
"build:compile": "bun run compile.ts",
"build:bundle": "tsup",
"build": "pnpm lint && pnpm build:bundle && pnpm build:compile",
"watch:bundle": "NODE_ENV=development tsup --watch",
"release": "npm version -m 'chore(release): %s' --",
"prepublishOnly": "pnpm build",
"postversion": "git push && git push --tags",
"s21b": "pnpm run build:bundle && pnpm run build:compile && pnpm s21:run_binary",
"s21:run_binary": "./build/bin/*",
"s21:run": "./build/dist/main.mjs",
"s21": "pnpm run build:bundle && pnpm s21:run"
},
"bin": {
"s21": "build/dist/main.mjs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@s21toolkit/shared": "^1.4.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/common-tags": "^1.8.4",
"@types/node": "^20.17.17",
"bun": "^1.2.2",
"cmd-ts": "^0.13.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"@s21toolkit/client": "^1.1.0",
"@s21toolkit/client-schema": "^76.2.1",
"arktype": "1.0.24-alpha",
"cache-manager": "^5.7.6",
"cache-manager-fs-hash": "^2.0.0",
"common-tags": "^1.8.2",
"dayjs": "^1.11.13",
"disposablestack": "^1.1.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"private": false,
"license": "MIT"
}