-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
package.json
File metadata and controls
80 lines (80 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
80
{
"$schema": "https://json.schemastore.org/package",
"name": "@adapty/core",
"version": "3.15.0",
"description": "Platform-agnostic core for Adapty JS SDKs",
"license": "MIT",
"author": "Adapty team <support@adapty.io>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"clean": "rm -rf dist .tsbuildinfo",
"prebuild": "yarn clean",
"lint": "eslint ./src --ext .ts",
"format": "prettier ./src -w",
"format-check": "prettier ./src --check",
"test": "jest",
"tsc": "tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.3.1",
"lint-staged": "^15.2.11",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"tsdown": "^0.9.0",
"typescript": "^5.9.3"
},
"dependencies": {
"tslib": "^2.5.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptyteam/AdaptySDK-JS-Core.git"
},
"homepage": "https://adapty.io/docs/",
"bugs": {
"url": "https://github.com/adaptyteam/AdaptySDK-React-Native/issues"
},
"keywords": [
"adapty",
"sdk",
"core"
]
}