-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.12 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
{
"name": "@themeparks/parksapi",
"type": "module",
"version": "2.0.0",
"description": "",
"engines": {
"npm": ">=11",
"node": ">=24"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"dev": "npm run ts-dev -- src/test.ts",
"ts-dev": "tsx --env-file=.env",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"web": "npm run build && NODE_ENV=production npm run ts-dev -- src/webServer.ts",
"web:dev": "concurrently -n \"API,UI\" -c \"blue,magenta\" \"npm run ts-dev -- src/webServer.ts\" \"cd web-ui && npm run dev\"",
"web:build": "cd web-ui && npm run build",
"harness": "tsx --env-file=.env src/harness/compare.ts",
"health": "tsx --env-file=.env src/harness/health.ts",
"migrate": "tsx --env-file=.env src/tools/migrate/index.ts",
"migrate:audit": "tsx --env-file=.env src/tools/migrate/audit.ts",
"audit:live": "tsx --env-file=.env src/tools/audit/live.ts",
"har": "tsx src/tools/har/index.ts",
"docs": "typedoc",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThemeParks/parksapi.git"
},
"author": "@cube",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThemeParks/parksapi/issues"
},
"homepage": "https://github.com/ThemeParks/parksapi#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^25.6.0",
"@types/tz-lookup": "^6.1.2",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"tsx": "^4.20.5",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vitest": "^4.0.16"
},
"dependencies": {
"@themeparks/typelib": "^1.1.3",
"adm-zip": "^0.5.16",
"ajv": "^8.17.1",
"sift": "^17.1.3",
"tz-lookup": "^6.1.25",
"undici": "^7.25.0"
}
}