-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.03 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
{
"name": "z-js-framework",
"version": "0.0.8",
"description": "The literally low mental overhead js framework!",
"main": "index.js",
"type": "module",
"module": "index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"index.js"
],
"directories": {
"doc": "docs",
"example": "example"
},
"scripts": {
"build": "vite build",
"docs": "jsdoc -d ./docs index.js",
"publish": "npm publish --access public"
},
"devDependencies": {
"jsdoc": "^4.0.3",
"rollup-plugin-brotli": "^3.1.0",
"terser": "^5.26.0",
"vite": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Z-Js-Framework/z-js.git"
},
"keywords": [
"Js",
"Framework",
"vanilla",
"js",
"framework",
"htmx",
"html"
],
"author": "Hussein Kizz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Z-Js-Framework/z-js/issues"
},
"homepage": "https://github.com/Z-Js-Framework/z-js#readme",
"dependencies": {
"morphdom": "^2.7.3"
}
}