-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "uland",
"version": "1.0.1",
"main": "./cjs/index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run async && npm run cjs && npm run rollup:async && npm run rollup:es && npm run rollup:index && npm run rollup:esm && npm run size",
"cjs": "ascjs --no-default esm cjs",
"async": "cp esm/index.js esm/async.js && sed -i.bck 's/uhooks-dom/uhooks-dom\\/async/; s/\\/\\*async\\*\\//async/; s/\\/\\*await\\*\\//await/' esm/async.js && rm -rf esm/async.js.bck",
"rollup:async": "rollup --config rollup/async.config.js && sed -i.bck 's/^var /self./' async.js && rm -rf async.js.bck",
"rollup:esm": "rollup --config rollup/esm.config.js",
"rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck",
"rollup:index": "rollup --config rollup/index.config.js && sed -i.bck 's/^var /self./' index.js && rm -rf index.js.bck",
"size": "echo 'async ES6' && cat async.js | brotli | wc -c && echo '' && echo 'sync ESM / ES6' && cat esm.js | brotli | wc -c && cat es.js | brotli | wc -c"
},
"keywords": [
"micro",
"react",
"hooks",
"neverland",
"µland"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"ascjs": "^5.0.1",
"rollup": "^2.74.1",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-terser": "^7.0.2"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./async": {
"import": "./esm/async.js",
"default": "./cjs/async.js"
},
"./jsx": {
"import": "./esm/x.js",
"default": "./cjs/x.js"
},
"./package.json": "./package.json"
},
"unpkg": "esm.js",
"dependencies": {
"jsx2tag": "^0.3.0",
"uarray": "^1.0.0",
"uhooks-dom": "^0.5.0",
"uhtml": "^3.0.1",
"umap": "^1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/uland.git"
},
"bugs": {
"url": "https://github.com/WebReflection/uland/issues"
},
"homepage": "https://github.com/WebReflection/uland#readme",
"description": "A uhtml based neverland fork"
}