-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.21 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@staticcanvas/lume",
"version": "0.36.16",
"description": "Zero-dependency contextual tooltip engine with smart collision detection and DOM mutation awareness.",
"type": "module",
"main": "./dist/lume.cjs",
"module": "./dist/lume.mjs",
"browser": "./dist/lume.js",
"types": "./src/lume.d.ts",
"exports": {
".": {
"types": "./src/lume.d.ts",
"import": "./dist/lume.mjs",
"require": "./dist/lume.cjs",
"default": "./dist/lume.js"
},
"./css": "./src/lume.css",
"./metrics": {
"types": "./src/lume-metrics.d.ts",
"import": "./dist/lume-metrics.mjs",
"require": "./dist/lume-metrics.cjs",
"default": "./dist/lume-metrics.js"
},
"./debug": {
"types": "./src/lume-debug.d.ts",
"import": "./dist/lume-debug.mjs",
"require": "./dist/lume-debug.cjs",
"default": "./dist/lume-debug.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"branding",
"README.md",
"LICENSE",
"jsr.jsonc"
],
"scripts": {
"dev": "vite",
"serve:demo": "vite --open docs/static/webutil/index.html",
"docs:build": "npm run build && hugo --source docs",
"docs:data": "pwsh -NoLogo -NoProfile -File tools/Get-ReleaseDownloads.ps1 -ProjectId 76108741 -PackageName lume -ProjectName lume -Namespace staticcanvas",
"docs:serve": "npm run docs:data && npm run build && hugo server --source docs --buildDrafts --disableFastRender --ignoreCache --noHTTPCache --gc",
"build": "vite build && npm_config_mode=metrics vite build --config vite.optional.config.js && npm_config_mode=debug vite build --config vite.optional.config.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:bun": "bun test",
"test:coverage:bun": "bun test --coverage",
"check:size": "node scripts/check-bundle-size.mjs",
"validate:release": "node scripts/validate-release.mjs",
"check:quality": "npm run build && npm run check:size && npm test",
"bench:size": "node scripts/compare-bundle-size.mjs",
"bench:runtime": "playwright test --config scripts/benchmark/playwright.config.mjs"
},
"keywords": [
"tooltip",
"tooltips",
"popover",
"ui-component",
"vanilla-js",
"mutation-observer",
"staticcanvas",
"esm"
],
"author": "Garvey K. Snow",
"license": "MIT",
"peerDependencies": {
"@staticcanvas/logcad": "^0.6.0"
},
"peerDependenciesMeta": {
"@staticcanvas/logcad": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://gitlab.com/staticcanvas/lume.git"
},
"homepage": "https://staticcanvas.gitlab.io/lume",
"bugs": {
"url": "https://gitlab.com/staticcanvas/lume/-/issues"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@playwright/test": "^1.62.1",
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-v8": "^3.2.7",
"axe-core": "^4.13.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.0",
"rollup-plugin-copy": "^3.5.0",
"vite": "^6.1.0",
"vitest": "^3.0.5"
}
}