-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
{
"name": "z21js",
"description": "ROCO Z21 command center TS/JS library",
"author": "BCsabaEngine <csaba@balazs-magyar.hu>",
"license": "MIT",
"version": "1.0.5",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=12",
"npm": ">=7"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SegmentController/z21js.git"
},
"bugs": {
"url": "https://github.com/SegmentController/z21js/issues"
},
"homepage": "https://github.com/SegmentController/z21js",
"scripts": {
"dev": "nodemon examples/example.ts",
"clean": "tsc --build --clean",
"build": "tsc --build --clean && tsc --build --force",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"fix": "npm run format:fix && npm run lint:fix",
"npm-publish-patch": "npm run build && npm version patch && npm publish && npm run clean && git push",
"npm-publish-minor": "npm run build && npm version minor && npm publish && npm run clean && git push"
},
"keywords": [
"roco",
"z21"
],
"devDependencies": {
"@types/deep-equal": "^1.0.4",
"@types/node": "22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"prettier": "^3.3.3",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}