-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.31 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
{
"author": "Developer Platform",
"description": "",
"devDependencies": {
"@aws-sdk/client-s3": "3.774.0",
"@biomejs/biome": "1.9.4",
"@devvit/metrics": "0.11.12-next-2025-03-27-16d09b321.0",
"@devvit/protos": "0.11.12-next-2025-03-27-6ccc59480.0",
"@devvit/public-api": "0.11.12-next-2025-03-27-6ccc59480.0",
"@devvit/shared-types": "0.11.12-next-2025-03-27-6ccc59480.0",
"@types/node": "22.13.13",
"@typescript-eslint/parser": "8.28.0",
"@vitest/coverage-v8": "3.0.9",
"browserslist": "^4.24.4",
"devvit": "0.11.12-next-2025-03-27-6ccc59480.0",
"esbuild": "0.25.1",
"eslint": "9.23.0",
"eslint-plugin-compat": "6.0.2",
"ioredis": "5.6.0",
"jiti": "^2.4.2",
"lit": "3.2.1",
"redis-memory-server": "0.12.1",
"typescript": "5.8.2",
"vitest": "3.0.9"
},
"engines": {
"node": ">=22.6"
},
"license": "BSD-3-Clause",
"name": "field",
"private": true,
"scripts": {
"build": "tools/build.ts --minify",
"build:atlas": "tools/atlas-pack.ts src/iframe/game/config.json",
"clean": "rm -rf dist webroot/*.js*",
"clobber": "npm run clean && rm -rf src/iframe/game/atlas.json webroot/assets/atlas.webp",
"devvit:install:prod": "npm run clean && npm run build && devvit upload --config=devvit.prod.yaml --employee-update --ignoreOutdated && tools/install.ts src/shared/config/config.prod.json",
"devvit:install:dev": "tools/install.ts src/shared/config/config.dev.json",
"devvit:playtest": "sh -c 'devvit playtest --config=devvit.dev.yaml --log-runtime \"$@\"|grep --invert --line-buffered \"\\[api\\]\"' --",
"format": "npm run formatter -- --fix",
"formatter": "biome check --error-on-warnings",
"playtest": "sh -c 'trap \"kill 0\" exit; npm start& tools/build.ts --watch& npm run devvit:playtest -- \"$@\"& wait' --",
"start": "tools/build.ts --dev-mode --watch",
"test": "npm run test:format && npm run test:eslint && npm run test:types && npm run test:unit",
"test:eslint": "eslint",
"test:format": "npm run formatter",
"test:types": "tsc --build",
"test:unit": "NODE_OPTIONS=\"--no-warnings=ExperimentalWarning ${NODE_OPTIONS}\" vitest run",
"test:unit:coverage": "NODE_OPTIONS=\"--no-warnings=ExperimentalWarning ${NODE_OPTIONS}\" vitest run --coverage"
},
"type": "module",
"version": "0.0.0"
}