wff-web 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +15 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +1446 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wff-web",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Web preview renderer for WearOS Watch Face Format (WFF) v4 XML",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"keywords": [
|
|
20
|
+
"wearos",
|
|
21
|
+
"watch-face",
|
|
22
|
+
"wff",
|
|
23
|
+
"watch-face-format",
|
|
24
|
+
"canvas",
|
|
25
|
+
"renderer",
|
|
26
|
+
"preview"
|
|
27
|
+
],
|
|
28
|
+
"author": "Patrick Auld",
|
|
29
|
+
"license": "ISC",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/PatrickAuld/wff_web.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/PatrickAuld/wff_web/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/PatrickAuld/wff_web#readme",
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@playwright/test": "^1.58.2",
|
|
43
|
+
"@types/node": "^25.5.0",
|
|
44
|
+
"@types/pngjs": "^6.0.5",
|
|
45
|
+
"pixelmatch": "^7.1.0",
|
|
46
|
+
"playwright": "^1.58.2",
|
|
47
|
+
"pngjs": "^7.0.0",
|
|
48
|
+
"tsup": "^8.5.1",
|
|
49
|
+
"tsx": "^4.21.0",
|
|
50
|
+
"typescript": "^6.0.2",
|
|
51
|
+
"vitest": "^4.1.1"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"build": "tsup src/index.ts --format esm --dts",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"test:visual": "vitest run --config vitest.visual.config.ts",
|
|
57
|
+
"test:visual:update-baselines": "tsx scripts/update-baselines.ts",
|
|
58
|
+
"report": "tsx scripts/generate-report.ts"
|
|
59
|
+
}
|
|
60
|
+
}
|