generated from productdevbookcom/ts-bundle-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
63
{
"name": "revenuecat",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "Revenuecat Rest API for Node.js and TypeScript (Unofficial)",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/revenuecat",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/revenuecat.git"
},
"bugs": "https://github.com/productdevbookcom/revenuecat/issues",
"keywords": [
"revenuecat",
"revenuecat typescript",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"pnpm": ">=8"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@vitest/coverage-c8": "^0.31.0",
"bumpp": "^9.1.0",
"eslint": "^8.40.0",
"tsup": "^7.2.0",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vitest": "^0.31.0"
},
"publishConfig": {
"access": "public"
}
}