-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 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
{
"name": "@mobilelocker/javascript-sdk",
"version": "2.0.1",
"description": "Official JavaScript SDK for building interactive presentations and custom features on the Mobile Locker platform.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"default": "./dist/index.umd.js"
}
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint src",
"docs": "yarn docs:api && yarn --cwd docs-site dev",
"prepublishOnly": "yarn build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:api": "typedoc && node scripts/prepare-docs.mjs",
"docs:build": "yarn docs:api && yarn --cwd docs-site install --frozen-lockfile && yarn --cwd docs-site build",
"docs:preview": "yarn --cwd docs-site preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobilelocker/mobilelocker-javascript-sdk.git"
},
"keywords": [
"mobile-locker",
"sdk",
"javascript"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Mobile Locker",
"license": "UNLICENSED",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.18.1",
"localforage": "^1.10.0",
"uuid": "^14.0.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"happy-dom": "^20.11.1",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10"
},
"resolutions": {
"vite": "8.1.5"
}
}