-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 KB
/
package.json
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
{
"name": "@vkontakte/mini-apps-analytics",
"version": "2.4.0",
"description": "core functionality to for VK mini apps analytics ",
"main": "dist/index.js",
"browser": "dist/index.umd.js",
"module": "dist/index.es.js",
"umdName": "vkMiniAppsAnalytics",
"types": "dist/types/src/index.d.ts",
"author": {
"name": "VK",
"url": "https://vk.ru"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"watch": "yarn run --top-level rollup -c -w",
"lint": "yarn run --top-level eslint ./src --quiet --ext .tsx --ext .ts",
"build": "yarn lint && NODE_ENV=production yarn run --top-level rollup -c && yarn run docs:generate",
"prepack": "yarn run build",
"test": "yarn run --top-level jest --config ../../jest.config.js",
"docs:generate": "yarn run --top-level typedoc --readme none --plugin typedoc-plugin-markdown --out ./docs ./src/index.ts "
},
"repository": {
"type": "git",
"url": "https://github.com/VKCOM/mini-apps-analytics.git",
"directory": "packages/core"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.7.5",
"eslint-import-resolver-typescript": "^3.6.1"
}
}