-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.36 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.36 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@grabjs/superapp-sdk",
"version": "2.0.0-beta.40",
"description": "SDK for Grab SuperApp WebView.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && npm run build:dist && npm run build:docs && npm run build:skills",
"build:dist": "node scripts/build-dist.mjs",
"build:docs": "npm run build:docs:api && npm run build:docs:html",
"build:docs:api": "npx typedoc --options typedoc.api.json",
"build:docs:html": "npx typedoc --options typedoc.html.json",
"build:docs:md": "npx typedoc --options typedoc.md.json",
"build:skills": "node scripts/build-skills.mjs",
"build:watch": "rollup -cw",
"check": "npm run check:format && npm run check:lint && npm run test:check",
"check:format": "prettier --check .",
"check:lint": "eslint .",
"clean": "rimraf md dist build api-reference skills",
"fix": "npm run fix:format && npm run fix:lint",
"fix:format": "prettier --write .",
"fix:lint": "eslint . --fix",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:check": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grab/superapp-sdk.git"
},
"maintainers": [
"Maxime Debersaques <maxime.debersaques@grabtaxi.com>",
"Stefanus Anggara <stefanus.anggara@grabtaxi.com>",
"Mengshen Aw <mengshen.aw@grabtaxi.com>",
"Oleksandr Prokofiev <oleksandr.prokofiev@grabtaxi.com>"
],
"files": [
"dist",
"api-reference",
"skills"
],
"keywords": [
"superapp",
"webview",
"android",
"ios"
],
"author": "Viet Hai Pham <viethai.pham@grabtaxi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grab/superapp-sdk/issues"
},
"homepage": "https://github.com/grab/superapp-sdk#readme",
"dependencies": {
"valibot": "^1.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^7.5.1",
"@grabjs/mobile-kit-bridge-sdk": "^2.2.2",
"@microsoft/api-extractor": "^7.57.6",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.1.36",
"eslint": "^10.0.2",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^16.3.1",
"prettier": "3.8.1",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typedoc-plugin-no-inherit": "^1.6.1",
"typedoc-plugin-valibot": "^1.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,ts,mjs}": "eslint --fix"
}
}