-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "@bookingsuedtirol/mss-nodejs",
"version": "0.45.0",
"type": "module",
"description": "MSS API wrapper for Node.js projects",
"exports": {
".": "./dist/index.js",
"./dist/types/*": "./dist/types/*"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx ./src/examples/simple.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/bookingsuedtirol/mss-nodejs.git"
},
"keywords": [
"node-js",
"api-wrapper"
],
"author": "David Spiess",
"license": "MIT",
"bugs": {
"url": "https://github.com/bookingsuedtirol/mss-nodejs/issues"
},
"homepage": "https://github.com/bookingsuedtirol/mss-nodejs#readme",
"dependencies": {
"clone": "^2.1.2",
"jsonix": "^3.0.0",
"nl2br": "0.0.3",
"sanitize-html": "^2.14.0",
"wretch": "^2.11.0",
"xmldom": "npm:@xmldom/xmldom@^0.9.6"
},
"devDependencies": {
"@types/clone": "^2.1.4",
"@types/node": "^22.10.5",
"@types/sanitize-html": "^2.13.0",
"dotenv": "^16.4.7",
"prettier": "3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22.0.0"
}
}