-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "@michijs/htmltype",
"author": "Lucas M. Segurado",
"license": "MIT",
"version": "0.4.9",
"baseUrl": "./src",
"repository": {
"type": "git",
"url": "https://github.com/michijs/htmltype.git"
},
"files": [
"dist/",
"generated/",
"bin/"
],
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./supported": {
"import": "./generated/index.js",
"require": "./generated/index.js"
},
"./bin": {
"import": "./bin/index.js",
"require": "./bin/index.js"
}
},
"description": "Strict TypeScript types for HTML, SVG and MATHML attributes based on MDN data.",
"scripts": {
"generate": "bun run ./tasks/generateTypes/main.ts",
"dist": "tsc && tsc --project tasks.tsconfig.json",
"test-tsc": "tsc --skipLibCheck --noEmit && tsc --project tasks.tsconfig.json --noEmit --skipLibCheck",
"link": "bun run dist && bun link --force && tsc -w && tsc --project tasks.tsconfig.json -w"
},
"keywords": [
"html",
"svg",
"mathml",
"typescript"
],
"devDependencies": {
"@michijs/shared-configs": "0.0.36",
"@types/bun": "1.3.11",
"typescript": "5.9.3",
"vscode-html-languageservice": "5.6.2"
},
"dependencies": {
"@vscode/web-custom-data": "0.6.3",
"@michijs/vscode-svg": "2.1.5",
"@michijs/vscode-mathml": "1.1.3"
},
"peerDependencies": {
"csstype": "^3.1.3"
}
}