-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.87 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
{
"name": "@appolabs/sdk",
"version": "2.0.2",
"description": "JavaScript bridge SDK for native app features in React Native WebViews",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/appolabs/sdk.git"
},
"homepage": "https://github.com/appolabs/sdk#readme",
"bugs": {
"url": "https://github.com/appolabs/sdk/issues"
},
"keywords": [
"appo",
"react-native",
"webview",
"bridge",
"native",
"expo",
"push-notifications",
"biometrics",
"sdk",
"mobile"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:integration": "vitest run tests/integration/",
"test:watch": "vitest",
"docs": "typedoc",
"docs:check": "typedoc --emit none",
"playground": "node playground/serve.mjs",
"prepublishOnly": "npm run build",
"docs:dev": "cd website && pnpm dev",
"docs:build": "cd website && pnpm build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"tsup": "^8.0.0",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.4.0",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}