-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.99 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tessel",
"version": "1.0.23",
"homepage": "https://play.tessel.at/",
"license": "GPL-3.0-or-later",
"author": {
"name": "Gijs van Tulder",
"url": "https://www.vantulder.net/"
},
"scripts": {
"build": "lingui compile --typescript && NODE_ENV=production parcel build src/index.html --no-source-maps",
"build-cap-html": "lingui compile --typescript && NODE_ENV=production SKIP_SERVICE_WORKER=true parcel build src/index.capacitor.html --dist-dir dist-capacitor --no-source-maps && rm -r dist-capacitor/social/",
"serve": "NODE_ENV=development parcel serve src/index.html --no-cache",
"test": "lingui compile --typescript && vitest",
"check": "tsc --noEmit",
"update-icon": "rsvg-convert assets/icons/icon.svg -w 180 -h 180 -o assets/icons/icon.png ; for s in 180 192 512 1024 ; do rsvg-convert assets/icons/icon.svg -w $s -h $s -o assets/icons/icon-$s.png ; done",
"update-cap-assets": "npx @capacitor/assets generate --iconBackgroundColor '#eeeeee' --iconBackgroundColorDark '#222222' --splashBackgroundColor '#eeeeee' --splashBackgroundColorDark '#111111' --android --assetPath assets/capacitor/",
"screenshots": "tsx scripts/make-screenshots.ts",
"lingui-extract": "lingui extract",
"lingui-compile": "lingui compile --typescript"
},
"browserslist": "defaults",
"type": "module",
"dependencies": {
"@lingui/core": "^6.4.0",
"@parcel/service-worker": "^2.16.4",
"canonical-json": "^0.4.0",
"check2d": "^9.36.4",
"polygon-clipping": "^0.15.7",
"workbox-core": "^7.4.1",
"workbox-precaching": "^7.4.1",
"workbox-window": "^7.4.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@capacitor/android": "^8.4.1",
"@capacitor/app": "^8.1.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^8.4.1",
"@capacitor/core": "^8.4.1",
"@capacitor/device": "^8.0.2",
"@capacitor/ios": "^8.4.1",
"@capacitor/preferences": "^8.0.1",
"@capacitor/share": "^8.0.1",
"@capacitor/status-bar": "^8.0.2",
"@capawesome/capacitor-android-edge-to-edge-support": "^8.0.8",
"@eslint/js": "^10.0.1",
"@lingui/babel-plugin-lingui-macro": "^6.4.0",
"@lingui/cli": "^6.4.0",
"@lingui/swc-plugin": "^6.5.1",
"@lingui/vite-plugin": "^6.4.0",
"@parcel/packager-raw-url": "^2.16.4",
"@parcel/reporter-bundle-analyzer": "^2.16.4",
"@parcel/transformer-inline-string": "^2.16.4",
"@parcel/transformer-sass": "^2.16.4",
"@parcel/transformer-webmanifest": "^2.16.4",
"@rollup/plugin-node-resolve": "^16.0.3",
"@vitejs/plugin-react-swc": "^4.3.1",
"@vitest/coverage-v8": "^4.1.9",
"babel-plugin-transform-define": "^2.1.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"color": "^5.0.3",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-lingui": "^0.14.0",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^30.4.1",
"parcel": "^2.16.4",
"parcel-namer-rewrite": "^2.10.3-rc.5",
"parcel-reporter-static-files-copy": "^1.5.3",
"prettier": "^3.9.4",
"process": "^0.11.10",
"svgo": "^4.0.1",
"ts-loader": "^9.6.2",
"tslib": "^2.8.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.2",
"vitest": "^4.1.9"
},
"parcel-namer-rewrite": {
"hashing": "always",
"disable": false,
"rules": {
"^([^s].*).js": "game.{hash}.js",
"^(.*).css": "game.{hash}.css",
"^index.capacitor.html": "index.html"
}
},
"staticFiles": [
{
"staticPath": "assets/social/tessel-1200x1200.png",
"staticOutPath": "social"
},
{
"staticPath": "assets/social/tessel-1200x630.png",
"staticOutPath": "social"
},
{
"staticPath": "assets/icons/favicon.ico"
},
{
"staticPath": "assets/icons/apple-touch-icon.png"
}
],
"alias": {
"@lingui/core": "@lingui/core/dist",
"@lingui/message-utils": "@lingui/message-utils/dist"
}
}