-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "@su14iman/typo3-connector",
"version": "1.0.5",
"description": "TYPO3-Headless Connector for Typescript",
"keywords": [
"typo3-connector",
"t3headless",
"connector",
"typo3",
"typoe3-headless",
"typescript",
"api",
"rest"
],
"author": "Sulaiman Sulaiman <[email protected]>",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"/dist"
],
"homepage": "https://github.ssulaiman.com/typo3-connector",
"repository": {
"type": "git",
"url": "https://github.com/su14iman/typo3-connector.git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:local": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest",
"example": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node-dev --respawn src/example.ts"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"typescript": "^5.5",
"ts-node": "^10.9",
"ts-node-dev": "^2.0",
"jest": "^29.7",
"ts-jest": "^29.2",
"@types/jest": "^29.5",
"@types/node": "^20.14"
},
"dependencies": {}
}