@byre/vellum 1.0.0
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 +21 -0
- package/README.md +57 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.js +504 -0
- package/dist/index.js.map +1 -0
- package/dist/register.cjs +2 -0
- package/dist/register.cjs.map +1 -0
- package/dist/register.js +8 -0
- package/dist/register.js.map +1 -0
- package/dist/spec.md +1292 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@byre/vellum",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Vellum: a minimal, DOM-centric mod loader kernel for web applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
|
+
},
|
|
13
|
+
"./register": {
|
|
14
|
+
"import": "./dist/register.js",
|
|
15
|
+
"require": "./dist/register.cjs"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build": "vite build",
|
|
24
|
+
"preview": "vite preview",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"test:coverage": "vitest run --coverage",
|
|
28
|
+
"prepublishOnly": "npm run build"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"web-components",
|
|
35
|
+
"mod-loader",
|
|
36
|
+
"plugin-system",
|
|
37
|
+
"micro-frontends",
|
|
38
|
+
"dependency-management",
|
|
39
|
+
"meta-framework"
|
|
40
|
+
],
|
|
41
|
+
"author": "Byre <tech@byre.dev>",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/byre/vellum.git"
|
|
46
|
+
},
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/byre/vellum/issues"
|
|
49
|
+
},
|
|
50
|
+
"homepage": "https://github.com/byre/vellum#readme",
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"vite": "^6.0.0",
|
|
53
|
+
"vitest": "^3.0.0",
|
|
54
|
+
"@vitest/coverage-v8": "^3.0.0",
|
|
55
|
+
"happy-dom": "^17.0.0",
|
|
56
|
+
"vite-plugin-static-copy": "^1.0.0"
|
|
57
|
+
}
|
|
58
|
+
}
|