-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.34 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
{
"name": "@cocreate/elements",
"version": "1.38.0",
"description": "Fetch content into any html element by using html5 attributes to query data stored in CoCreate headless CMS. If data is changed it will instantly reflect in html tags as changes are broadcasted in realtime",
"keywords": [
"elements",
"cocreate",
"low-code-framework",
"no-code-framework",
"cocreatejs",
"cocreatejs-component",
"cocreate-framework",
"no-code",
"low-code",
"collaborative-framework",
"realtime",
"realtime-framework",
"collaboration",
"shared-editing",
"html5-framework",
"javascript-framework"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npx webpack --config webpack.config.js",
"build": "npx webpack --mode=production --config webpack.config.js",
"dev": "npx webpack --config webpack.config.js --watch",
"postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoCreate-app/CoCreate-elements.git"
},
"author": "CoCreate LLC",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/CoCreate-app/CoCreate-elements/issues"
},
"homepage": "https://cocreate.app/docs/elements",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/CoCreate-app"
},
"main": "./src/index.js",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.5.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-log": "^3.0.1"
},
"dependencies": {
"@cocreate/actions": "^1.18.4",
"@cocreate/crud-client": "^1.33.11",
"@cocreate/element-prototype": "^1.23.0",
"@cocreate/filter": "^1.15.1",
"@cocreate/observer": "^1.16.3",
"@cocreate/render": "^1.41.3",
"@cocreate/utils": "^1.34.1"
}
}