-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.51 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.51 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
{
"name": "node-ios-device",
"version": "4.0.3",
"description": "Simple library for detecting and installing apps on iOS devices",
"type": "module",
"bin": "./bin/node-ios-device",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"gypfile": true,
"author": "TiDev, Inc. <npm@tidev.io>",
"license": "Apache-2.0",
"keywords": [
"ios",
"iphone",
"ipad",
"install",
"mobiledevice",
"mobile",
"device",
"devices"
],
"scripts": {
"build": "pnpm build:bundle && pnpm rebuild",
"build:bundle": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript && pnpm build:types",
"build:types": "pnpm build:types:temp && pnpm build:types:roll && pnpm build:types:check",
"build:types:temp": "tsc --declaration --emitDeclarationOnly --outDir temp --project tsconfig.build.json",
"build:types:roll": "rollup --config rollup.dts.config.ts --configPlugin typescript && rimraf temp",
"build:types:check": "tsc --project tsconfig.check.json",
"check": "pnpm type-check && pnpm lint",
"clean": "node-gyp clean",
"coverage": "vitest --pool=forks --coverage",
"install": "node -e \"process.exit(process.platform === 'darwin' ? 0 : 1)\" && node-gyp-build || echo 'Skipping install for non-Darwin platform'",
"lint": "oxlint",
"prepublishOnly": "pnpm build:bundle && pnpm prebuild",
"prebuild": "prebuildify --napi=true --strip --electron-compat",
"rebuild": "node-gyp rebuild",
"test": "vitest --allowOnly --pool=forks",
"type-check": "tsc --noEmit"
},
"dependencies": {
"napi-macros": "2.2.2",
"node-gyp-build": "4.8.4",
"snooplogg": "6.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "25.5.0",
"@vitest/coverage-v8": "4.1.0",
"esbuild": "0.27.4",
"lefthook": "2.1.4",
"node-gyp": "12.2.0",
"oxlint": "1.56.0",
"prebuildify": "6.0.1",
"rimraf": "6.1.3",
"rollup": "4.59.0",
"rollup-plugin-dts": "6.4.0",
"rollup-plugin-esbuild": "6.2.1",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.1.0"
},
"files": [
"dist",
"prebuilds",
"scripts/build.js",
"src/*.{cpp,h}",
"binding.gyp",
"media"
],
"homepage": "https://github.com/tidev/node-ios-device",
"bugs": "https://github.com/tidev/node-ios-device/issues",
"repository": "https://github.com/tidev/node-ios-device",
"engines": {
"node": ">=20.18.1"
}
}