-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.99 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.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
113
114
115
116
{
"name": "@screenly/edge-apps",
"version": "0.0.17",
"description": "A TypeScript library for interfacing with Screenly Edge Apps API",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"edge-apps-scripts": "./bin/edge-apps-scripts.ts"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components": {
"import": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./styles": "./src/styles/index.css",
"./styles/*": "./src/styles/*",
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./test": {
"import": "./dist/test/index.js",
"types": "./dist/test/index.d.ts"
},
"./test/screenshots": {
"import": "./dist/test/screenshots.js",
"types": "./dist/test/screenshots.d.ts"
},
"./tsconfig.json": "./tsconfig.json"
},
"files": [
"dist",
"bin",
"configs",
"scripts",
"vite-plugins",
"eslint.config.ts",
"tsconfig.json",
"vite.config.ts",
"src/styles",
"src/assets"
],
"scripts": {
"prepublishOnly": "bun run build",
"prebuild": "bun run type-check",
"build": "bun build:types && bun run copy:assets",
"build:types": "tsc",
"copy:assets": "bun run scripts/copy-assets.ts",
"test": "bun test --parallel",
"test:unit": "bun test --parallel",
"test:coverage": "bun test --coverage --parallel",
"lint": "eslint . --fix",
"format": "prettier --write src/ scripts/ vite-plugins/ README.md index.html",
"format:check": "prettier --check src/ scripts/ vite-plugins/ README.md index.html",
"type-check": "tsc --noEmit"
},
"prettier": "./.prettierrc.json",
"keywords": [
"screenly",
"edge-apps",
"digital-signage"
],
"author": "Screenly",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@photostructure/tz-lookup": "^11.5.0",
"@tailwindcss/vite": "^4.2.1",
"country-locale-map": "^1.9.12",
"dayjs": "^1.11.19",
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"jiti": "^2.6.1",
"offline-geocode-city": "^1.0.2",
"typescript-eslint": "^8.57.0",
"panic-overlay": "^1.0.51",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"yaml": "^2.8.2"
},
"peerDependencies": {
"@playwright/test": "^1.58.0"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
}
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.4.0",
"@types/sharp": "^0.32.0",
"bun-types": "^1.3.10",
"jsdom": "^28.1.0",
"prettier": "^3.8.1"
}
}