-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 KB
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
{
"name": "@openc3/js-common",
"description": "Common library for COSMOS tool development",
"version": "7.0.1-beta0",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://openc3.com",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenC3/cosmos.git",
"directory": "openc3-cosmos-init/plugins/packages/openc3-js-common"
},
"bugs": {
"url": "https://github.com/OpenC3/cosmos/issues"
},
"keywords": [
"openc3",
"cosmos"
],
"type": "module",
"files": [
"dist",
"viteDevServerPlugin.mjs"
],
"exports": {
"./services": {
"import": "./dist/services.js",
"require": "./dist/services.cjs"
},
"./utils": {
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
},
"./viteDevServerPlugin": {
"default": "./viteDevServerPlugin.mjs"
}
},
"scripts": {
"serve": "vite build --watch --mode dev-server",
"build": "vite build",
"lint": "eslint src",
"serve:standalone": "vite preview --mode standalone"
},
"dependencies": {
"@anycable/web": "1.1.1",
"@astrouxds/astro-web-components": "7.27.0",
"axios": "1.14.0",
"binary-search": "1.3.6",
"date-fns": "4.1.0",
"date-fns-tz": "3.2.0",
"lodash": "4.18.1",
"lossless-json": "4.3.0",
"sass": "1.98.0",
"sortablejs": "1.15.7",
"sprintf-js": "1.1.3",
"uplot": "1.6.32"
},
"devDependencies": {
"prettier": "3.8.1",
"vite": "7.3.1"
}
}