-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 968 Bytes
/
package.json
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
{
"name": "css-to-html",
"version": "0.8.1",
"description": "Generate HTML documents from just CSS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"test-server": "cd test-server && npm run dev",
"test": "npm run build && npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSS-Canvas/CSS-to-HTML.git"
},
"keywords": [
"css",
"html",
"generator",
"converter"
],
"author": {
"name": "Giga",
"email": "[email protected]",
"url": "https://zakweb.dev/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CSS-Canvas/CSS-to-HTML/issues"
},
"homepage": "https://github.com/CSS-Canvas/CSS-to-HTML#readme",
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.10.1",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"dependencies": {
"css-selector-parser": "^2.3.2",
"dompurify": "^3.2.2"
}
}