-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "markupless",
"version": "0.4.3",
"description": "fluent, readable JavaScript framework that eliminates markup with magical abstractions.",
"type": "module",
"main": "out/index.js",
"types": "out/index.d.ts",
"exports": {
".": {
"types": "./out/index.d.ts",
"import": "./out/index.js"
}
},
"files": [
"out"
],
"scripts": {
"dev": "bun run --watch examples/index.html",
"dev:build": "bun build examples/index.html --outdir=dist",
"build": "bun run build.ts",
"test": "bun test",
"docs": "typedoc",
"check": "biome check src/",
"format": "biome format --write",
"release": "release-it"
},
"keywords": [
"frontend",
"framework",
"typescript",
"ui",
"reactive",
"lightweight"
],
"author": "Luki Zainur <lukyfriendly@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lzif/markupless.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@release-it/conventional-changelog": "^10.0.4",
"@types/bun": "^1.3.5",
"bun-plugin-dts": "^0.3.0",
"happy-dom": "^20.0.11",
"release-it": "^19.2.2",
"typedoc": "^0.28.15",
"typedoc-theme-hierarchy": "^6.0.0",
"typescript": "^5.9.3"
}
}