-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 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
{
"name": "freemius-js",
"private": true,
"version": "0.0.1",
"description": "NodeJS SDK for integrating your SaaS with Freemius",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npm run build --workspaces",
"build:sdk": "npm run build --workspace=@freemius/sdk",
"build:saas-kit": "npm run build --workspace=@freemius/saas-kit",
"dev:sdk": "npm run dev --workspace=@freemius/sdk",
"dev:saas-kit": "npm run dev --workspace=@freemius/saas-kit",
"typecheck": "npm run typecheck --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"clean": "npm run clean --workspaces",
"release": "npm run build && npx changeset publish",
"prepare": "husky",
"generate": "npm run prisma:generate --workspace=@freemius/saas-kit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Freemius/freemius-js.git"
},
"keywords": [
"node.js",
"freemius"
],
"author": "Freemius Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/Freemius/freemius-js/issues"
},
"homepage": "https://github.com/Freemius/freemius-js#readme",
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@eslint/js": "^9.32.0",
"@freemius/checkout": "^1.3.1",
"@next/eslint-plugin-next": "^15.4.6",
"@types/node": "^24.2.0",
"dotenv": "^17.2.1",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"openapi-typescript": "^7.8.0",
"prettier": "3.6.2",
"react": "^19.1.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint",
"**/*": "prettier --write --ignore-unknown"
},
"workspaces": [
"packages/sdk",
"packages/saas-kit"
]
}