-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "@softwarity/interactive-code",
"version": "1.1.1",
"description": "A Web Component for displaying syntax-highlighted code with interactive bindings. Supports HTML, SCSS, TypeScript, and Shell with interactive values (boolean, number, string, select, color, comment, attribute).",
"type": "module",
"main": "./dist/interactive-code.js",
"module": "./dist/interactive-code.js",
"unpkg": "./dist/interactive-code.js",
"jsdelivr": "./dist/interactive-code.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/interactive-code.js",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
"src",
"themes",
"types"
],
"scripts": {
"dev": "vite",
"build": "vite build && npm run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir types",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softwarity/interactive-code.git"
},
"bugs": {
"url": "https://github.com/softwarity/interactive-code/issues"
},
"homepage": "https://softwarity.github.io/interactive-code/",
"keywords": [
"code",
"syntax-highlighting",
"interactive",
"web-component",
"custom-element",
"html",
"scss",
"typescript",
"shell",
"documentation",
"demo"
],
"author": "Softwarity",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.17",
"happy-dom": "^20.3.1",
"minify-literals": "^1.0.10",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.17"
}
}