-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 2.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@abi-software/simulationvuer",
"version": "2.0.7",
"private": false,
"scripts": {
"serve": "vite serve --host",
"build-bundle": "vite build",
"vuese-gen": "node vuese-generator.js",
"vuese-watch": "node vuese-generator.js watch",
"version": "npm run build-bundle;",
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish",
"docs:dev": "vitepress dev docs",
"docs:watch": "concurrently \"npm run vuese-watch\" \"npm run docs:dev\"",
"docs:build": "npm run vuese-gen; vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@abi-software/plotvuer": "^1.0.3",
"element-plus": "2.8.4",
"jsonschema": "^1.4.0",
"mathjs": "^13.0.2",
"unplugin-vue-components": "^0.26.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
"@vuese/markdown-render": "^2.11.3",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"base64-inline-loader": "^2.0.1",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"sass": "^1.70.0",
"vite": "^5.0.12",
"vitepress": "^1.0.0-rc.45",
"vue-docgen-api": "^4.79.2",
"vue-router": "^4.2.5",
"webpack-node-externals": "^2.5.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"description": "SimulationVuer is a [Vue](https://vuejs.org/) component to configure and run a [CellML](https://cellml.org/)-based model of some biological process, and to visualise the results of that simulation.",
"type": "module",
"main": "./dist/simulationvuer.umd.cjs",
"module": "./dist/simulationvuer.js",
"exports": {
".": {
"import": "./dist/simulationvuer.js",
"require": "./dist/simulationvuer.umd.cjs"
},
"./dist/style.css": "./dist/style.css",
"./src/*": "./src/*"
},
"files": [
"data/*",
"dist/*",
"public/*",
"scripts/*",
"src/*",
"*.json",
"*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ABI-Software/simulationvuer.git"
},
"author": "Alan Garny",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ABI-Software/simulationvuer/issues"
},
"homepage": "https://github.com/ABI-Software/simulationvuer#readme"
}