-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.08 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
{
"name": "fastcomments-sdk",
"version": "3.2.3",
"description": "FastComments API Client - A SDK for interacting with the FastComments API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
},
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
}
},
"scripts": {
"build": "npm run generate && npm run compile",
"compile": "tsc",
"generate": "npm run clean:generated && ./update.sh",
"clean:generated": "rm -rf src/generated",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build && npm run test:browser",
"publish:npm": "./publish.sh",
"test": "node --test dist/__tests__/**/*.test.js",
"test:unit": "node --test dist/__tests__/sso.test.js",
"test:integration": "node --test dist/__tests__/sso.integration.test.js",
"test:browser": "node --test dist/__tests__/browser-compatibility.test.js",
"test:watch": "node --test --watch dist/__tests__/**/*.test.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"fastcomments",
"api",
"sdk",
"comments",
"typescript",
"nodejs"
],
"author": "FastComments <support@fastcomments.com>",
"license": "MIT",
"homepage": "https://fastcomments.com",
"repository": {
"type": "git",
"url": "https://github.com/fastcomments/fastcomments-sdk-js.git"
},
"bugs": {
"url": "https://github.com/fastcomments/fastcomments-sdk-js/issues"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.13.12",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.35.0",
"happy-dom": "^12.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"dependencies": {},
"engines": {
"node": ">=18.0.0"
}
}