-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 930 Bytes
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
{
"name": "@veypi/vhtml",
"version": "0.9.0",
"description": "vhtml is a lightweight JavaScript library for parsing and manipulating HTML content with ease.",
"type": "module",
"module": "./dist/vhtml.min.js",
"exports": {
".": {
"import": "./dist/vhtml.min.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"dev": "vite build --watch --mode development",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"javascript",
"library"
],
"author": "veypi",
"license": "MIT",
"devDependencies": {
"vite": "^5.3.0",
"terser": "^5.19.0",
"@types/node": "^20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/veypi/vhtml.git"
},
"publishConfig": {
"access": "public"
}
}