-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.02 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
{
"name": "@stickyqr/analytics",
"version": "1.1.0",
"description": "Analytics SDK for Web & React Native - A Segment.js alternative",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"react-native": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --config jest.config.cjs --passWithNoTests",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"stickyqr",
"analytics",
"tracking",
"react-native",
"expo",
"segment-alternative",
"customer-data-platform"
],
"author": "Mr Tung",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StickyQR/analytics"
},
"homepage": "https://github.com/StickyQR/analytics#readme",
"bugs": {
"url": "https://github.com/StickyQR/analytics/issues"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.21.0 || ^2.0.0",
"expo-constants": ">=16.0.0",
"expo-device": ">=6.0.0",
"react-native": ">=0.70.0"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
},
"expo-constants": {
"optional": true
},
"expo-device": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@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/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rollup": "^4.54.0",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
}
}