-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "before-after",
"version": "4.0.0",
"description": "BeforeAfter is a lightweight Javascript library to compare images in before/after view without any dependencies",
"keywords": [
"slider",
"before after"
],
"homepage": "https://github.com/yoriiis/before-after",
"bugs": "https://github.com/yoriiis/before-after/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/yoriiis/before-after.git"
},
"license": "MIT",
"author": "Yoriiis",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./lib/index.js"
}
},
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"biome:check": "biome check",
"biome:fix": "biome check --write",
"build": "rm -rf ./types ./lib && tsc",
"dev": "tsc --noEmit --watch",
"test": "echo \"No test specified\" && exit 0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"postcss": "^8.5.6",
"postcss-custom-media": "^12.0.0",
"postcss-import": "^16.1.1",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^11.1.3",
"postcss-url": "^10.1.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
}
}