-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@relax.js/core",
"version": "1.2.3",
"description": "Ship faster with less code. Web Component library with routing, forms, DI, templating, and i18n. No virtual DOM, no build magic, no surprise re-renders.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"test": "vitest --config ./vitest.config.ts",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"buildOld": "tsc",
"build": "tsc --emitDeclarationOnly && node build.js",
"docs": "npx typedoc",
"yalc:publish": "yalc publish && yalc push",
"yalc:watch": "nodemon --ext ts,js,json --exec \"npm run yalc:publish\"",
"bp": "npm run build && npm run yalc:publish",
"publish:npm": "npm run build && npm publish --access public"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@vitest/coverage-v8": "^3.0.5",
"esbuild": "^0.25.0",
"eslint": "^9.17.0",
"jsdom": "^26.1.0",
"typedoc": "^0.28.18",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-ts": "^1.3.2-1",
"vitest": "^3.0.5"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./html": {
"types": "./dist/html/index.d.ts",
"import": "./dist/html/index.mjs",
"require": "./dist/html/index.js"
},
"./http": {
"types": "./dist/http/index.d.ts",
"import": "./dist/http/index.mjs",
"require": "./dist/http/index.js"
},
"./forms": {
"types": "./dist/forms/index.d.ts",
"import": "./dist/forms/index.mjs",
"require": "./dist/forms/index.js"
},
"./routing": {
"types": "./dist/routing/index.d.ts",
"import": "./dist/routing/index.mjs",
"require": "./dist/routing/index.js"
},
"./i18n": {
"types": "./dist/i18n/index.d.ts",
"import": "./dist/i18n/index.mjs",
"require": "./dist/i18n/index.js"
},
"./elements": {
"types": "./dist/elements/index.d.ts",
"import": "./dist/elements/index.mjs",
"require": "./dist/elements/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.mjs",
"require": "./dist/utils/index.js"
},
"./di": {
"types": "./dist/di/index.d.ts",
"import": "./dist/di/index.mjs",
"require": "./dist/di/index.js"
},
"./collections": {
"types": "./dist/collections/Index.d.ts",
"import": "./dist/collections/index.mjs",
"require": "./dist/collections/index.js"
}
},
"files": [
"dist",
"docs"
]
}