-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.63 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
67
68
69
70
71
72
73
74
{
"name": "sea-js-ui-core",
"version": "0.0.8",
"sideEffects": false,
"description": "The smallest UI framework",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"files": [
"dist/**/*"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"build": "rollup -c",
"dev": "vite"
},
"jest": {
"testEnvironment": "jsdom"
},
"keywords": [
"ui",
"frontend",
"framework",
"state-management",
"RxJS",
"real-dom",
"performance",
"minimal-bundle",
"reactivity",
"JavaScript",
"compact",
"web-app",
"vanilla-js",
"lightweight",
"single-file-framework",
"tiny-framework",
"efficient",
"reactive-programming",
"high-performance",
"sea-js-ui-core",
"sea-js",
"create-sea-app",
"virtual-dom",
"frontend-framework",
"rollup"
],
"author": "samiranghosh04",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^2.79.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-brotli": "^3.1.0",
"rollup-plugin-gzip": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"vite": "^5.4.3"
},
"dependencies": {
"rxjs": "^7.8.1"
}
}