This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "cosmos-framework",
"version": "1.0.0",
"description": "Frontend framework for creating reactive UIs using direct DOM manipulation.",
"main": "./dist/runtime/index.js",
"scripts": {
"build": "rollup -c",
"compiler_test": "npm run build && node test/test.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
".": "./dist/runtime/index.js",
"./compiler": "./dist/compiler/index.js"
},
"type": "commonjs",
"author": "CosmicMedia LLC",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@rollup/plugin-json": "^4.1.0",
"acorn": "^8.5.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"parse5": "https://gitpkg.now.sh/CosmicMedia/parse5/packages/parse5?master",
"rollup": "^2.56.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.42.1",
"sirv-cli": "^1.0.14"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-classes": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"acorn-bigint": "^1.0.0",
"acorn-jsx": "^5.3.2",
"ast-source": "^3.0.0",
"astring": "^1.7.5",
"astring-jsx": "^1.0.1",
"code-red": "^0.2.2",
"core-js": "^3.18.0",
"es6-shim": "^0.35.6",
"estree-walker": "^3.0.0",
"lodash.isequal": "^4.5.0",
"source-map": "^0.7.3",
"typescript": "^4.4.3"
}
}