@opencor/opencor 0.20251002.1 → 0.20251017.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/opencor.css +1 -1
- package/dist/opencor.es.js +3993 -3970
- package/package.json +22 -21
package/package.json
CHANGED
|
@@ -39,11 +39,22 @@
|
|
|
39
39
|
},
|
|
40
40
|
"./style.css": "./dist/opencor.css"
|
|
41
41
|
},
|
|
42
|
-
"version": "0.
|
|
42
|
+
"version": "0.20251017.2",
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "vite build",
|
|
45
|
+
"build:lib": "vite build --config vite.lib.config.ts && cp index.d.ts dist/index.d.ts",
|
|
46
|
+
"clean": "node scripts/clean.js",
|
|
47
|
+
"dev": "vite dev",
|
|
48
|
+
"format": "prettier --log-level silent --write . && clang-format -i src/libopencor/src/*",
|
|
49
|
+
"format:check": "prettier --check . && clang-format --dry-run -Werror src/libopencor/src/*",
|
|
50
|
+
"lint": "eslint --fix .",
|
|
51
|
+
"start": "bun run build && vite preview",
|
|
52
|
+
"version:new": "node scripts/version.js"
|
|
53
|
+
},
|
|
43
54
|
"peerDependencies": {
|
|
44
|
-
"mathjs": "^14.
|
|
45
|
-
"plotly.js-gl2d-dist-min": "^3.1.
|
|
46
|
-
"vue": "
|
|
55
|
+
"mathjs": "^14.9.1",
|
|
56
|
+
"plotly.js-gl2d-dist-min": "^3.1.1",
|
|
57
|
+
"vue": "3.4.21"
|
|
47
58
|
},
|
|
48
59
|
"dependencies": {
|
|
49
60
|
"@primeuix/themes": "^1.2.5",
|
|
@@ -54,35 +65,25 @@
|
|
|
54
65
|
"primeicons": "^7.0.0",
|
|
55
66
|
"primevue": "4.2.5",
|
|
56
67
|
"quill": "^2.0.3",
|
|
57
|
-
"ua-parser-js": "^2.0.
|
|
68
|
+
"ua-parser-js": "^2.0.6",
|
|
69
|
+
"vue": "3.4.21"
|
|
58
70
|
},
|
|
59
71
|
"devDependencies": {
|
|
60
72
|
"@tailwindcss/postcss": "^4.1.14",
|
|
61
73
|
"@tailwindcss/vite": "^4.1.14",
|
|
62
74
|
"@types/js-cookie": "^3.0.6",
|
|
63
|
-
"@types/node": "^24.
|
|
64
|
-
"@types/plotly.js": "3.0.
|
|
75
|
+
"@types/node": "^24.7.2",
|
|
76
|
+
"@types/plotly.js": "3.0.6",
|
|
65
77
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
66
78
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
67
79
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
68
80
|
"@vue/tsconfig": "^0.8.1",
|
|
69
81
|
"autoprefixer": "^10.4.21",
|
|
70
|
-
"eslint": "^9.
|
|
82
|
+
"eslint": "^9.37.0",
|
|
71
83
|
"prettier": "^3.6.2",
|
|
72
84
|
"tailwindcss": "^4.1.14",
|
|
73
85
|
"tailwindcss-primeui": "^0.6.1",
|
|
74
86
|
"unplugin-vue-components": "^29.1.0",
|
|
75
|
-
"vite": "^7.1.
|
|
76
|
-
},
|
|
77
|
-
"scripts": {
|
|
78
|
-
"build": "vite build",
|
|
79
|
-
"build:lib": "vite build --config vite.lib.config.ts && cp index.d.ts dist/index.d.ts",
|
|
80
|
-
"clean": "node scripts/clean.js",
|
|
81
|
-
"dev": "vite dev",
|
|
82
|
-
"format": "prettier --log-level silent --write . && clang-format -i src/libopencor/src/*",
|
|
83
|
-
"format:check": "prettier --check . && clang-format --dry-run -Werror src/libopencor/src/*",
|
|
84
|
-
"lint": "eslint --fix .",
|
|
85
|
-
"serve": "pnpm build && vite preview",
|
|
86
|
-
"version:new": "node scripts/version.js"
|
|
87
|
+
"vite": "^7.1.10"
|
|
87
88
|
}
|
|
88
|
-
}
|
|
89
|
+
}
|