-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1010 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1010 Bytes
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
{
"name": "now-js-framework",
"version": "1.0.0",
"description": "Modern JavaScript Framework",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:core && npm run build:table && npm run build:graph && npm run build:serviceworker && npm run build:queue && npm run build:eventcalendar && npm run build:editor",
"build:core": "cross-env BUILD_TARGET=core vite build",
"build:table": "cross-env BUILD_TARGET=table vite build",
"build:graph": "cross-env BUILD_TARGET=graph vite build",
"build:serviceworker": "cross-env BUILD_TARGET=serviceworker vite build",
"build:queue": "cross-env BUILD_TARGET=queue vite build",
"build:eventcalendar": "cross-env BUILD_TARGET=eventcalendar vite build",
"build:editor": "cross-env BUILD_TARGET=editor vite build"
},
"devDependencies": {
"cross-env": "^10.1.0",
"terser": "^5.44.1",
"vite": "^5.0.0"
},
"keywords": [
"framework",
"javascript"
],
"author": "",
"license": "MIT"
}