-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "nxtp-js",
"version": "1.3.3",
"description": "nxtp server in ts",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.2",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"chai": "^5.1.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"scripts": {
"build:watch": "tsc -w",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"test": "jest",
"test:lint": "eslint .",
"typecheck": "tsc --noEmit",
"start": "node ./dist/index.js",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syroegkin/nxtp-js.git"
},
"keywords": [
"zx-spectrum",
"nxtp",
"timeserver",
"zx-spectrum next"
],
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/syroegkin/nxtp-js/issues"
},
"homepage": "https://github.com/syroegkin/nxtp-js#readme",
"dependencies": {
"date-fns-tz": "^3.2.0",
"windows-iana": "^5.1.0"
}
}