ultra-light-js 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +674 -0
- package/README.md +437 -0
- package/dist/jsx.d.ts +684 -0
- package/dist/jsx.d.ts.map +1 -0
- package/dist/jsx.js +109 -0
- package/dist/types.d.ts +56 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +3 -0
- package/dist/ultra-light.d.ts +71 -0
- package/dist/ultra-light.d.ts.map +1 -0
- package/dist/ultra-light.js +816 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ultra-light-js",
|
|
3
|
+
"version": "1.0.18",
|
|
4
|
+
"description": "A lightweight JavaScript framework for building reactive, state-management, and SPA applications.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/ultra-light.js",
|
|
7
|
+
"types": "dist/ultra-light.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18"
|
|
11
|
+
},
|
|
12
|
+
"packageManager": "pnpm@10.34.5+sha512.a4ee05f2f73658255bd6a89859c065a45c28a57daefae2c893a168ee2b73168c37b91e83e57ea67654ad03f03031746430e8bce38e362e042605fb8abc80192e",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/ultra-light.d.ts",
|
|
16
|
+
"import": "./dist/ultra-light.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite ./test",
|
|
28
|
+
"build": "tsc",
|
|
29
|
+
"prepare": "pnpm run build",
|
|
30
|
+
"prepublishOnly": "pnpm run build",
|
|
31
|
+
"lint": "eslint .",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:hooks": "vitest watch --disableConsoleIntercept ./src/tests/hooks.spec.ts",
|
|
34
|
+
"test:components": "vitest watch --disableConsoleIntercept ./src/tests/components.spec.ts",
|
|
35
|
+
"changeset": "changeset",
|
|
36
|
+
"version-packages": "changeset version",
|
|
37
|
+
"release": "changeset publish"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"framework",
|
|
41
|
+
"reactive",
|
|
42
|
+
"state-management",
|
|
43
|
+
"router",
|
|
44
|
+
"components",
|
|
45
|
+
"lightweight",
|
|
46
|
+
"vanilla-js",
|
|
47
|
+
"typescript",
|
|
48
|
+
"spa",
|
|
49
|
+
"ui-framework"
|
|
50
|
+
],
|
|
51
|
+
"author": "Amín Pérez <joseamin1998@gmail.com>",
|
|
52
|
+
"license": "GPL-3.0",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/EvilPrime98/ultra-light-js.git"
|
|
56
|
+
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/EvilPrime98/ultra-light-js/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/EvilPrime98/ultra-light-js#readme",
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@changesets/cli": "^2.31.0",
|
|
63
|
+
"@eslint/js": "^10.0.1",
|
|
64
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
65
|
+
"eslint": "^10.0.2",
|
|
66
|
+
"globals": "^17.3.0",
|
|
67
|
+
"happy-dom": "^20.8.3",
|
|
68
|
+
"linkedom": "^0.18.12",
|
|
69
|
+
"typescript": "^5.0.0",
|
|
70
|
+
"typescript-eslint": "^8.56.1",
|
|
71
|
+
"vite": "^7.2.4",
|
|
72
|
+
"vitest": "^4.0.18"
|
|
73
|
+
},
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"csstype": "^3.2.3"
|
|
76
|
+
}
|
|
77
|
+
}
|