-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.6 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
{
"name": "devicekit",
"private": true,
"description": "Device profiles and a Web Component frame for iOS, Android and HarmonyOS, including iPhone 18 Pro and iPhone Duo.",
"license": "MIT",
"author": "EchoTechFE",
"repository": {
"type": "git",
"url": "git+https://github.com/EchoTechFE/devicekit.git"
},
"homepage": "https://github.com/EchoTechFE/devicekit#readme",
"bugs": {
"url": "https://github.com/EchoTechFE/devicekit/issues"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "pnpm -r build",
"check-types": "pnpm -r check-types",
"format": "oxfmt packages/devices/src/presets/ios.ts packages/devices/src/presets/android.ts packages/devices/src/presets/harmony.ts",
"format:check": "oxfmt --check packages/devices/src/presets/ios.ts packages/devices/src/presets/android.ts packages/devices/src/presets/harmony.ts",
"test": "pnpm -r test && pnpm run test:scripts",
"test:scripts": "node --test scripts/*.test.mjs",
"generate:device-pages": "pnpm run build && node scripts/generate-device-pages.mjs",
"check:device-pages": "pnpm run build && node scripts/generate-device-pages.mjs --check",
"test:coverage": "pnpm -r test:coverage",
"lint": "oxlint .",
"verify:pack": "pnpm -r build && node scripts/verify-pack.mjs",
"images": "node scripts/render-readme-images.mjs",
"release": "pnpm build && pnpm test && pnpm run verify:pack && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^3.0.2",
"oxfmt": "0.67.0",
"oxlint": "1.82.0",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.15.9"
}