-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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
{
"name": "aristotle",
"productName": "Aristotle",
"version": "0.1.2",
"private": true,
"author": "Josh Shor <[email protected]>",
"description": "Digital logic simulator for Windows, Mac, and Linux.",
"main": "dist-electron/main/main.js",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"lint": "eslint src",
"test:ci": "vitest run --coverage",
"test": "vitest --coverage --ui",
"docs:build": "vuepress build docs",
"docs:serve": "vuepress dev docs",
"release": "standard-version",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"dom-to-image-more": "^3.3.0",
"jszip": "^3.10.1",
"lodash.clonedeep": "^4.5.0",
"pinia": "^2.1.6",
"tiny-emitter": "^2.1.0",
"uuid": "^9.0.0",
"vue": "^3.3.4",
"vue-i18n": "^9.12.1",
"vue3-smooth-dnd": "^0.0.2"
},
"devDependencies": {
"@electron/remote": "^2.0.11",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@pinia/testing": "^0.1.3",
"@types/dom-to-image": "^2.6.4",
"@types/lodash.clonedeep": "^4.5.7",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.5.0",
"@vitest/ui": "^1.5.0",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"@vuepress/plugin-register-components": "^2.0.0-beta.67",
"electron": "^26.1.0",
"electron-builder": "^24.6.3",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^24.0.0",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.66.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^5.2.8",
"vite-plugin-electron": "^0.14.0-beta.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^1.5.0",
"vue-tsc": "^1.8.8",
"vuepress": "^2.0.0-beta.67"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"release": {
"branches": [
{
"name": "master"
}
]
}
}