-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.11 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
{
"name": "@ryanatkn/cosmicplayground",
"description": "tools and toys for expanding minds",
"version": "0.0.1",
"public": true,
"icon": "🌌",
"license": "Unlicense",
"homepage": "https://www.cosmicplayground.org/",
"author": {
"name": "Ryan Atkinson",
"email": "[email protected]",
"url": "https://www.ryanatkn.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanatkn/cosmicplayground.git"
},
"bugs": "https://github.com/ryanatkn/cosmicplayground/issues",
"funding": "https://www.ryanatkn.com/funding",
"keywords": [
"space",
"web",
"games",
"typescript",
"svelte"
],
"type": "module",
"engines": {
"node": ">=20.10"
},
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"test": "gro test",
"deploy": "gro deploy"
},
"files": [
"dist"
],
"devDependencies": {
"@pixi/app": "^7.4.0",
"@pixi/assets": "^7.4.0",
"@pixi/core": "^7.4.0",
"@pixi/display": "^7.4.0",
"@pixi/graphics": "^7.4.0",
"@pixi/sprite": "^7.4.0",
"@pixi/sprite-tiling": "^7.4.0",
"@pixi/text": "^7.4.0",
"@ryanatkn/belt": "^0.20.10",
"@ryanatkn/eslint-config": "^0.1.1",
"@ryanatkn/fuz": "^0.92.0",
"@ryanatkn/gro": "^0.115.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.5",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"dequal": "^2.0.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"svelte": "^4.2.13",
"svelte-check": "^3.6.8",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"uvu": "^0.5.6",
"zod": "^3.22.4"
},
"eslintConfig": {
"root": true,
"extends": "@ryanatkn"
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
],
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"bracketSpacing": false,
"overrides": [
{
"files": "package.json",
"options": {
"useTabs": false
}
}
]
}
}