-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
64
65
66
67
{
"name": "upnp-client-ts",
"version": "1.1.1",
"description": "A modern UPNP client made in Typescript.",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"lint": "tsc --noEmit && eslint \"src/**/*.ts{,x}\""
},
"targets": {
"module": {
"isLibrary": true,
"context": "node"
},
"main": {
"isLibrary": true,
"context": "node"
}
},
"keywords": [
"upnp",
"client",
"mediarenderer",
"typescript",
"module"
],
"author": "Corentin Mors <[email protected]>",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-tsc": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@types/elementtree": "^0.1.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"parcel": "^2.10.3",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"elementtree": "^0.1.7"
},
"@parcel/transformer-js": {
"inlineFS": false
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Mikescops/upnp-client-ts.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18.0.0"
}
}