2021-05-19 22:21:51 +00:00
|
|
|
{
|
2022-02-27 20:24:48 +00:00
|
|
|
"name": "profectus",
|
2022-07-18 02:35:23 +00:00
|
|
|
"version": "0.5.1",
|
2021-07-24 22:08:52 +00:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2022-06-26 03:34:18 +00:00
|
|
|
"start": "vite",
|
|
|
|
"dev": "vite",
|
|
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
|
|
"preview": "vite preview",
|
2022-07-08 01:30:19 +00:00
|
|
|
"test": "vitest run",
|
2022-08-13 16:42:01 +00:00
|
|
|
"testw": "vitest",
|
|
|
|
"serve": "vite preview --host"
|
2021-07-24 22:08:52 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-08-22 13:14:04 +00:00
|
|
|
"@fontsource/material-icons": "^4.5.4",
|
|
|
|
"@fontsource/roboto-mono": "^4.5.8",
|
2022-08-22 05:16:00 +00:00
|
|
|
"@pixi/app": "~6.3.2",
|
|
|
|
"@pixi/core": "~6.3.2",
|
2022-04-01 06:01:52 +00:00
|
|
|
"@pixi/particle-emitter": "^5.0.4",
|
2022-08-22 05:16:00 +00:00
|
|
|
"@pixi/ticker": "~6.3.2",
|
2022-06-26 03:34:18 +00:00
|
|
|
"@vitejs/plugin-vue": "^2.3.3",
|
|
|
|
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
2022-06-23 16:30:15 +00:00
|
|
|
"is-plain-object": "^5.0.0",
|
2022-04-18 02:15:38 +00:00
|
|
|
"lz-string": "^1.4.4",
|
2022-01-14 04:25:47 +00:00
|
|
|
"nanoevents": "^6.0.2",
|
2022-06-26 03:34:18 +00:00
|
|
|
"vite": "^2.9.12",
|
2022-06-26 20:22:22 +00:00
|
|
|
"vite-plugin-pwa": "^0.12.0",
|
2022-06-26 03:34:18 +00:00
|
|
|
"vite-tsconfig-paths": "^3.5.0",
|
2022-01-14 04:25:47 +00:00
|
|
|
"vue": "^3.2.26",
|
|
|
|
"vue-next-select": "^2.10.2",
|
2021-08-19 05:25:49 +00:00
|
|
|
"vue-panzoom": "^1.1.6",
|
2021-07-24 22:08:52 +00:00
|
|
|
"vue-textarea-autosize": "^1.1.1",
|
2021-08-27 05:18:34 +00:00
|
|
|
"vue-toastification": "^2.0.0-rc.1",
|
2022-01-25 04:25:34 +00:00
|
|
|
"vue-transition-expand": "^0.1.0",
|
|
|
|
"vuedraggable": "^4.1.0"
|
2021-07-24 22:08:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
First pass at typescript support
Oh man did this end up requiring a *ton* of other work as well.
There's still a few typing issues I still can't quite work out,
and others I'd like to improve when I have time. In fact, this version
doesn't even really work, it has a stack overflow error caused by
a tooltip for some reason have a tree inside it, which in turn has
another tooltip, etc. There's also 17 errors that I *really* feel like
shouldn't be there, but they are, and 113 warnings - mostly using !
to assert that things are non-null. Lots of work left to do, to sum up.
The reason I'm committing this now is because I really need to get to
work on my game jam, and since it won't use a tree or really many of
TMT-X's features, I can get away with using a broken engine :)
2021-08-17 04:30:54 +00:00
|
|
|
"@ivanv/vue-collapse-transition": "^1.0.2",
|
2022-01-25 04:23:30 +00:00
|
|
|
"@rushstack/eslint-patch": "^1.1.0",
|
2022-04-18 02:15:38 +00:00
|
|
|
"@types/lz-string": "^1.3.34",
|
2022-01-25 04:23:30 +00:00
|
|
|
"@vue/eslint-config-prettier": "^7.0.0",
|
2022-01-14 04:25:47 +00:00
|
|
|
"@vue/eslint-config-typescript": "^10.0.0",
|
|
|
|
"eslint": "^8.6.0",
|
2022-07-08 01:30:19 +00:00
|
|
|
"jsdom": "^20.0.0",
|
2022-01-25 04:23:30 +00:00
|
|
|
"prettier": "^2.5.1",
|
2022-07-10 07:20:42 +00:00
|
|
|
"typescript": "^4.7.4",
|
2022-07-08 01:30:19 +00:00
|
|
|
"vitest": "^0.17.1",
|
2022-06-26 03:34:18 +00:00
|
|
|
"vue-tsc": "^0.38.1"
|
2021-07-24 22:08:52 +00:00
|
|
|
},
|
2022-03-02 02:39:38 +00:00
|
|
|
"engines": {
|
2022-03-02 02:41:28 +00:00
|
|
|
"node": "16.x"
|
First pass at typescript support
Oh man did this end up requiring a *ton* of other work as well.
There's still a few typing issues I still can't quite work out,
and others I'd like to improve when I have time. In fact, this version
doesn't even really work, it has a stack overflow error caused by
a tooltip for some reason have a tree inside it, which in turn has
another tooltip, etc. There's also 17 errors that I *really* feel like
shouldn't be there, but they are, and 113 warnings - mostly using !
to assert that things are non-null. Lots of work left to do, to sum up.
The reason I'm committing this now is because I really need to get to
work on my game jam, and since it won't use a tree or really many of
TMT-X's features, I can get away with using a broken engine :)
2021-08-17 04:30:54 +00:00
|
|
|
}
|
2021-05-19 22:21:51 +00:00
|
|
|
}
|