-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "mita-dom",
"version": "2.5.0",
"homepage": "https://github.com/moonhuntercode/mita-dom",
"description": "Librería Vanilla JS de alto rendimiento para Web Components nativos y reactividad granular por turnos (Mita).",
"type": "module",
"main": "./dist/mita-dom.js",
"types": "./mita-dom.d.ts",
"exports": {
".": {
"types": "./mita-dom.d.ts",
"default": "./dist/mita-dom.js"
},
"./docs/aprende/*.md": "./docs/aprende/*.md",
"./docs/referencia/*.md": "./docs/referencia/*.md",
"./changelogs/*.md": "./changelogs/*.md",
"./*.md": "./*.md"
},
"files": [
"dist",
"src",
"mita-dom.d.ts",
"*.md",
"docs",
"changelogs",
"LICENSE"
],
"private": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "node --test --test-reporter=spec test/*.test.js",
"test:vitest": "vitest run",
"test:ui": "vitest --ui",
"lint": "eslint .",
"changelog": "node scripts/generar-changelog.js"
},
"devDependencies": {
"@vitest/ui": "^4.1.8",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"terser": "^5.48.0",
"vite": "^8.0.12",
"vitest": "^4.1.8"
},
"keywords": [
"web-components",
"signals",
"vanilla-js",
"light-dom",
"bolivia"
],
"author": "victor code",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git+https://github.com/moonhuntercode/mita-dom.git"
},
"engines": {
"node": ">=24.0.0"
}
}