-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "@trickfilm400/cs141-ups-mangement-card",
"version": "1.0.6",
"description": "Node.JS API for CS141 Management Card for UPS Systems",
"module": "./dist/esm/index.js",
"main": "./dist/index.js",
"typings": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"dev": "ts-node-dev --respawn --no-deps --rs --cls ./src/index.ts"
},
"keywords": [
"template",
"typescript",
"cs141",
"ups",
"management-card",
"cs141-ups-mangement-card"
],
"repository": {
"type": "git",
"url": "https://github.com/Trickfilm400/cs141-ups-mangement-card"
},
"author": "Nico W. <[email protected]> (https://trickfilm400.de/)",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.7.4"
},
"publishConfig": {
"access": "public"
}
}