-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
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
{
"name": "inapp-spy",
"version": "4.3.1",
"description": "detect in-app browsers",
"author": "Shalanah Dawson",
"homepage": "https://github.com/shalanah/inapp-spy",
"license": "MIT",
"bugs": {
"url": "https://github.com/shalanah/inapp-spy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shalanah/inapp-spy.git"
},
"keywords": [
"inapp",
"in-app",
"iab",
"inapp-spy",
"in-app-spy",
"inappspy",
"detect-inapp",
"detect",
"browser",
"spy"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/index.global.js",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"browser": "./dist/index.global.js"
}
},
"scripts": {
"build": "tsup",
"test": "jest --coverage ./src",
"versioning": "yarn changeset version",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}