-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.84 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
{
"name": "@haskou/vfd-console",
"version": "0.1.0",
"description": "Framework-agnostic VFD interface components with static 14-segment geometry.",
"keywords": [
"vfd",
"vacuum-fluorescent-display",
"display",
"ui",
"ui-library",
"typescript",
"css",
"framework-agnostic",
"hifi",
"14-segment",
"segment-display",
"spectrum-analyzer"
],
"type": "module",
"packageManager": "yarn@4.17.1",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/haskou/vfd-console.git"
},
"homepage": "https://haskou.github.io/vfd-console/",
"bugs": {
"url": "https://github.com/haskou/vfd-console/issues"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE"
],
"main": "./dist/vfd-console.js",
"module": "./dist/vfd-console.js",
"types": "./dist/index.d.ts",
"style": "./dist/vfd-console.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vfd-console.js",
"default": "./dist/vfd-console.js"
},
"./css": "./dist/vfd-console.css",
"./css/controls": "./dist/css/controls.css",
"./css/glass": "./dist/css/glass.css",
"./css/indicators": "./dist/css/indicators.css",
"./css/layouts": "./dist/css/layouts.css",
"./css/meters": "./dist/css/meters.css",
"./css/presets": "./dist/css/presets.css",
"./css/segments": "./dist/css/segments.css",
"./css/tokens": "./dist/css/tokens.css",
"./css/utilities": "./dist/css/utilities.css",
"./package.json": "./package.json"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite demo",
"build": "vite build",
"build:demo": "vite build --config vite.demo.config.ts",
"check": "yarn lint && yarn typecheck && yarn test && yarn build && yarn build:demo && yarn docs:build && yarn test:package",
"docs:build": "vite build --config vite.demo.config.ts --outDir ../docs/public/demo && vitepress build docs",
"docs:dev": "vite build --config vite.demo.config.ts --outDir ../docs/public/demo && vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"prepack": "yarn check",
"test": "vitest run",
"test:package": "node scripts/verify-package.mjs && tsc -p contract-tests/tsconfig.json && publint --pack=false --strict",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@haskou/eslint-config": "^0.2.1",
"@types/node": "^24.0.0",
"eslint": "^10.4.1",
"jsdom": "^26.1.0",
"prettier": "^3.8.4",
"publint": "^0.3.22",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^5.0.3",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
},
"license": "MIT"
}