-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.09 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.09 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
{
"name": "flexily",
"version": "0.6.0",
"description": "Pure JavaScript flexbox layout engine — composable plugins, text measurement, Yoga-compatible API, no WASM",
"keywords": [
"canvas-ui",
"css",
"flexbox",
"layout",
"measure",
"pure-javascript",
"terminal",
"tui",
"ui-layout",
"yoga",
"yoga-alternative",
"yoga-wasm",
"zero-dependency"
],
"homepage": "https://beorn.codes/flexily/",
"bugs": {
"url": "https://github.com/beorn/flexily/issues"
},
"license": "MIT",
"author": "Bjørn Stabell <bjorn@stabell.org>",
"repository": {
"type": "git",
"url": "https://github.com/beorn/flexily.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./src/index.ts",
"./classic": "./src/index-classic.ts",
"./testing": "./src/testing.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./classic": {
"types": "./dist/index-classic.d.mts",
"import": "./dist/index-classic.mjs"
},
"./testing": {
"types": "./dist/testing.d.mts",
"import": "./dist/testing.mjs"
}
}
},
"scripts": {
"build": "tsdown",
"test": "bun test",
"test:watch": "bun test --watch",
"bench": "bunx --bun vitest bench",
"typecheck": "tsc --noEmit",
"ci": "bun run typecheck && bun test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/node": "^25.5.0",
"loggily": "^0.4.2",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitepress": "^1.6.3",
"vitepress-enrich": "^0.4.0",
"vitepress-plugin-llms": "^1.0.0",
"vitest": "^3.1.0",
"yoga-wasm-web": "^0.3.3"
},
"tsdown": {
"clean": true,
"dts": true,
"entry": [
"src/index.ts",
"src/index-classic.ts",
"src/testing.ts"
],
"format": "esm"
},
"engines": {
"bun": ">=1.0",
"node": ">=18.0.0"
}
}