-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
53 lines (53 loc) · 1.13 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": "vanjs-core",
"version": "1.5.2",
"description": "VanJS. A minimalist React-like UI library based on vanilla JavaScript and DOM.",
"files": [
"src/van.js",
"src/van.d.ts",
"src/van.debug.js",
"src/van.debug.d.ts"
],
"main": "src/van.js",
"browser": "src/van.js",
"exports": {
".": "./src/van.js",
"./debug": "./src/van.debug.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Van",
"Vanilla",
"UI",
"UI Framework",
"React",
"Reactive",
"DOM",
"DOM Manipulation",
"Zero-Dependency",
"lightweight",
"Ultra-lightweight",
"Minimalist"
],
"author": "Tao Xin",
"license": "MIT",
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"esbuild": "^0.17.12",
"node-jq": "^6.0.1",
"terser": "^5.22.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanjs-org/van.git"
},
"bugs": {
"url": "https://github.com/vanjs-org/van/issues",
"email": "[email protected]"
},
"homepage": "https://vanjs.org"
}