-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicenseOptions.js
More file actions
32 lines (32 loc) · 1.27 KB
/
Copy pathlicenseOptions.js
File metadata and controls
32 lines (32 loc) · 1.27 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
module.exports = [
{
slug: "typeit_limited",
friendlySlug: "limited",
name: "TypeIt - Limited License",
htmlTitle: "<strong>Limited</strong> Commercial License",
simpleTitle: "Limited License",
price: 900, // must be in cents!
description:
"Use TypeIt on a single commercial project. Includes lifetime updates.",
permissionDescription:
"You are now eligible to use TypeIt for a single commercial project.",
licenseLink: "https://typeitjs.com/licenses/download/limited-commercial",
usageScope: "a single commercial project",
priceId: process.env.STRIPE_LIMITED_LICENSE_PRICE_ID,
},
{
slug: "typeit_unlimited",
friendlySlug: "unlimited",
name: "TypeIt - Unlimited License",
htmlTitle: "<strong>Unlimited</strong> Commercial License",
simpleTitle: "Unlimited License",
price: 2900, // must be in cents!
description:
"Unlimited use on any commercial project. Includes lifetime updates.",
permissionDescription:
"You are now eligible to use TypeIt commercially for an unlimited number of projects.",
usageScope: "any number of commercial projects",
licenseLink: "https://typeitjs.com/licenses/download/unlimited-commercial",
priceId: process.env.STRIPE_UNLIMITED_LICENSE_PRICE_ID,
},
];