-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.91 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
{
"name": "@carbonteq/hexapp",
"version": "0.20.2",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"type": "module",
"exports": {
"node": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"/dist"
],
"scope": "@carbonteq",
"repository": {
"type": "git",
"url": "https://github.com/carbonteq/hexapp"
},
"bugs": {
"url": "https://github.com/carbonteq/hexapp/issues"
},
"homepage": "https://github.com/carbonteq/hexapp#readme",
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "biome check src tests",
"lint:fix": "biome check src tests --write --unsafe",
"fmt:dry": "biome format src tests",
"fmt": "biome format src tests --write",
"tc": "tsc --pretty --noEmit --project tsconfig.build.json",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "tsx --test tests/**/*.spec.ts",
"test:debug": "tsx --test --inspect-brk tests/**/*.spec.ts",
"release": "changeset publish",
"tag": "changeset tag"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.29.4",
"@microsoft/api-extractor": "^7.52.8",
"@swc/core": "^1.11.24",
"@tsconfig/node22": "^22.0.1",
"@types/node": "22.15.17",
"changesets": "^1.0.2",
"jsr": "^0.13.4",
"tsdown": "^0.11.7",
"tsx": "^4.19.4",
"typescript": "5.8.3"
},
"dependencies": {
"@carbonteq/fp": "^0.7.0",
"zod": "^3.24.4",
"zod-validation-error": "^3.4.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0",
"yarn": ">=1.22.0"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}