-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 907 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
{
"name": "p",
"description": "P is a micro-library (<1.2 KB) to patch DOM Trees. Instead of using a Virtual DOM, it uses dom-diff to update the DOM if there is a child active element. Otherwise, it will take one tree by the other.",
"version": "0.0.0",
"license": "MIT",
"private": true,
"main": "dist/esm/index.js",
"umd:main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/cjs/index.js",
"typings": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git@gc-victor:gc-victor/p.git"
},
"keywords": [],
"devDependencies": {
"esbuild": "0.13.4",
"esm": "3.2.25",
"gzip-size": "6.0.0",
"jsdom": "18.0.0",
"prettier": "2.4.1",
"t-t": "git+https://github.com/gc-victor/t-t.git#138e449bf3ee31c9d438ae88c8363148864b3c45"
},
"files": [
"dist"
]
}