-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.59 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
{
"name": "@cocreate/rollup",
"version": "1.1.0",
"description": "A Rollup integration tool for CoCreate applications, enabling file watching, automated chunking, lazy loading, and file uploading. It leverages CoCreate.config for streamlined project builds and development workflows.",
"keywords": [
"rollup",
"cocreate",
"automation",
"file-watching",
"chunking",
"lazy-loading",
"file-uploading",
"low-code-framework",
"cocreatejs",
"cocreate-framework",
"low-code",
"realtime",
"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-rollup.git"
},
"author": "CoCreate LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoCreate-app/CoCreate-rollup/issues"
},
"homepage": "https://cocreate.app/docs/rollup",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/CoCreate-app"
},
"main": "./src/index.js"
}