-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 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
{
"name": "usageflow",
"version": "1.0.0",
"description": "A lightweight Node.js package for usage tracking and limit enforcement in SaaS applications",
"main": "src/sdk/index.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "babel src -d dist",
"lint": "eslint src",
"prepare": "npm run build"
},
"keywords": [
"saas",
"usage-tracking",
"stripe",
"supabase",
"subscription-management",
"usage-limits"
],
"author": "Richardson Dackam",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/richardsondx/usageflow.git"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"saas-subscription-helper": "^1.0.2",
"stripe": "^14.8.0"
},
"peerDependencies": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.4",
"@babel/preset-env": "^7.23.4",
"eslint": "^8.55.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
]
}