-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (63 loc) · 1.39 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
{
"name": "fre",
"version": "2.1.0-beta3",
"type": "module",
"main": "dist/fre.js",
"unpkg": "dist/fre.umd.js",
"module": "dist/fre.js",
"exports": {
".": {
"import": "./dist/fre.js",
"require": "./dist/fre.umd.js"
},
"./jsx-runtime": {
"import": "./jsx-runtime.js",
"require": "./jsx-runtime.js"
}
},
"typings": "./dist/types/index.d.ts",
"files": [
"src/**/*",
"dist/*.js",
"dist/*.map",
"dist/types",
"jsx-runtime.js"
],
"scripts": {
"test": "playwright-test test.js --runner zora",
"build": "rollup -c && gzip-size dist/fre.js",
"dev": "rollup -c --watch",
"prepublishOnly": "yarn build"
},
"description": "Tiny Concurrent UI library with Fiber.",
"keywords": [
"fre",
"frontend",
"framework",
"vdom",
"concurrent-mode",
"fiber",
"web",
"ui-library"
],
"author": "132yse",
"license": "MIT",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"codecov": "^3.6.1",
"cross-env": "^5.2.0",
"gzip-size-cli": "^3.0.0",
"playwright-test": "^5.0.0",
"rollup": "^2.11.2",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"terser": "^4.1.2",
"typescript": "^4.0.2",
"yarpm": "^0.2.1",
"zora": "4.0.2"
},
"repository": "yisar/fre",
"homepage": "https://fre.js.org",
"dependencies": {
}
}