-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 KB
/
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
44
45
46
47
48
49
50
51
52
53
{
"name": "mini-van-plate",
"version": "0.6.1",
"description": "A minimalist template engine for DOM generation and manipulation, working for both client-side and server-side rendering",
"files": [
"src/mini-van.js",
"src/mini-van.d.ts",
"src/van-plate.js",
"src/van-plate.d.ts",
"src/shared.js",
"src/shared.d.ts"
],
"main": "src/mini-van.js",
"exports": {
".": "./src/mini-van.js",
"./van-plate": "./src/van-plate.js",
"./shared": "./src/shared.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Template",
"Rendering",
"Server-side Rendering",
"DOM",
"DOM Generation",
"DOM Manipulation",
"Van",
"Vanilla",
"Zero-Dependency",
"Ultra-lightweight",
"Minimalist"
],
"author": "Tao Xin",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.17.19",
"node-jq": "^2.3.5",
"terser": "^5.19.2",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanjs-org/mini-van.git"
},
"bugs": {
"url": "https://github.com/vanjs-org/mini-van/issues",
"email": "[email protected]"
},
"homepage": "https://vanjs.org/minivan"
}