-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.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
95
96
97
98
{
"name": "@todde.tv/zlig",
"type": "module",
"version": "1.0.0-rc.0",
"packageManager": "pnpm@9.15.4",
"description": "zlig is a Japanese zen-inspired idle browser game showcasing lightweight web technologies like Vue and Three.js to create fully browser-based games.",
"author": "Thorsten Seyschab <business@todde.tv> (https://todde.tv/)",
"contributors": [
{
"name": "Thorsten Seyschab",
"email": "business@todde.tv",
"url": "https://todde.tv/"
},
{
"name": "Andreas Fehn",
"url": "https://github.com/fehnomenal"
}
],
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://todde.tv/",
"repository": {
"type": "git",
"url": "git+https://github.com/toddeTV/zlig.git"
},
"bugs": {
"url": "https://github.com/toddeTV/zlig/issues"
},
"keywords": [
"browser-game",
"cc-by-nc-sa-4-0",
"game",
"gltf",
"gltf2",
"idle-game",
"three-js",
"threejs",
"tresjs",
"typescript",
"vite",
"vue3",
"vuejs",
"web",
"website"
],
"engines": {
"node": "~22",
"pnpm": "~9.15.4"
},
"scripts": {
"dev": "vite --port 3000",
"dev:network": "run-s \"dev --host\"",
"build": "vite build",
"preview": "vite preview",
"test": "run-p \"lint\" \"test:types\" --",
"test:types": "vue-tsc --build --force",
"postinstall": "run-s \"generate:gltf-models\"",
"generate:gltf-models": "gltf-codegen",
"lint": "eslint .",
"lint:fix": "run-s \"lint --fix\"",
"lint:print-current-config": "mkdir -p ./dist/_eslintConfig && eslint --print-config file.json > ./dist/_eslintConfig/json.json && eslint --print-config file.vue > ./dist/_eslintConfig/vue.json && eslint --print-config file.js > ./dist/_eslintConfig/js.json && eslint --print-config file.ts > ./dist/_eslintConfig/ts.json && eslint --print-config file.md > ./dist/_eslintConfig/md.json && eslint --print-config file.html > ./dist/_eslintConfig/html.json && eslint --print-config file.yaml > ./dist/_eslintConfig/yaml.json && eslint --print-config file.xml > ./dist/_eslintConfig/xml.json && eslint --print-config file.toml > ./dist/_eslintConfig/toml.json && eslint --print-config file.gql > ./dist/_eslintConfig/gql.json && eslint --print-config file.css > ./dist/_eslintConfig/css.json && eslint --print-config file.astro > ./dist/_eslintConfig/astro.json && eslint --print-config file.svelte > ./dist/_eslintConfig/svelte.json && eslint --print-config file.less > ./dist/_eslintConfig/less.json && eslint --print-config file.scss > ./dist/_eslintConfig/scss.json && eslint --print-config file.pcss > ./dist/_eslintConfig/pcss.json"
},
"dependencies": {
"vue": "~3.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "~3.5.1",
"@iconify-json/ph": "~1.2.1",
"@iconify/tailwind": "~1.1.3",
"@rushstack/eslint-patch": "~1.10.4",
"@todde.tv/gltf-type-toolkit": "~1.1.0",
"@tresjs/cientos": "~4.0.2",
"@tresjs/core": "~4.2.10",
"@tsconfig/node20": "~20.1.4",
"@types/big.js": "~6.2.2",
"@types/node": "~20.16.5",
"@types/three": "~0.168.0",
"@vitejs/plugin-vue": "~5.1.3",
"@vue/eslint-config-typescript": "~13.0.0",
"@vue/tsconfig": "~0.5.1",
"autoprefixer": "~10.4.20",
"big.js": "~6.2.2",
"eslint": "~9.10.0",
"eslint-plugin-format": "~0.1.2",
"eslint-plugin-perfectionist": "~3.5.0",
"eslint-plugin-vue": "~9.28.0",
"npm-run-all2": "~6.2.2",
"pinia": "~2.2.2",
"postcss": "~8.4.45",
"tailwindcss": "~3.4.11",
"three": "~0.168.0",
"tsx": "~4.19.1",
"typescript": "~5.5.4",
"vite": "~5.4.4",
"vite-plugin-vue-devtools": "~7.4.5",
"vue-router": "~4.4.4",
"vue-tsc": "~2.1.6"
}
}