-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.72 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
{
"name": "oberry",
"version": "1.11.0",
"description": "A lightweight and modern jQuery alternative for DOM manipulation, user interactions, and reactive data binding",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs"
},
"types": "dist/index.d.mts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsdown src/index.ts --dts",
"prepublishOnly": "pnpm run build",
"dev": "tsdown src/index.ts --watch --dts",
"clean": "rm -rf dist",
"format": "pnpm biome check --write",
"lint": "pnpm biome check",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"prepare": "husky"
},
"keywords": [
"dom",
"manipulation",
"jquery",
"alternative",
"reactive",
"data-binding",
"typescript",
"frontend",
"javascript",
"selector",
"signals"
],
"author": "Radosław Kaczmarczyk",
"license": "MIT",
"homepage": "https://github.com/radeqq007/oberry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/radeqq007/oberry.git"
},
"bugs": {
"url": "https://github.com/radeqq007/oberry/issues"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"alien-signals": "^3.1.2"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"alien-signals": "^3.1.2",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,d.ts,json,jsonc}": [
"biome check --write --files-ignore-unknown=true"
]
}
}