-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.22 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.22 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
{
"name": "htswap",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ahme-dev/htswap.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"htswap",
"swap",
"htmx",
"ajax",
"ui",
"minimal"
],
"files": [
"dist",
"dist-min",
"dist-compat",
"dist-legacy"
],
"main": "./dist/htswap.cjs",
"types": "./dist/htswap.d.ts",
"module": "./dist/htswap.js",
"exports": {
".": {
"import": {
"types": "./dist/htswap.d.ts",
"default": "./dist/htswap.js"
},
"require": {
"types": "./dist/htswap.d.cts",
"default": "./dist/htswap.cjs"
}
}
},
"size-limit": [
{
"path": "src/htswap.ts",
"gzip": true,
"limit": "1999b"
}
],
"scripts": {
"size": "size-limit",
"build": "tsdown",
"test:ui": "pnpm build; cypress open --e2e",
"test": "pnpm build; cypress run --e2e",
"prepublishOnly": "pnpm run build",
"fix": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@size-limit/preset-small-lib": "^11.2.0",
"cypress": "^15.1.0",
"publint": "^0.3.12",
"size-limit": "^11.2.0",
"tsdown": "^0.14.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"unplugin-swc": "^1.5.7"
}
}