-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.71 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
{
"name": "@sunamo/sunodejs",
"version": "1.0.0",
"main": "./lib/index.js",
"scripts": {
"build": "pnpm clean && tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"lint": "eslint ./src/ --fix",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"format": "prettier --write .",
"build:tsc-watch": "tsc --project tsconfig.build.json --watch",
"build:auto-index": "barrelsby -d src --delete",
"build:auto-index:watch:onchange": "onchange 'src/**/*.ts' -- npm run build:auto-index",
"build:auto-index:watch": "nodemon --ignore 'src/index.ts' --watch src --ext ts --exec \"npm run build:auto-index\"",
"build:watch": "npm-run-all -p build:tsc-watch build:auto-index",
"run-publish": "cross-env npm version patch -f && pnpm run build && npm publish",
"onchange nefunguje a nevím proč, zkusím tedy nodemon": "",
"test:onchange": "onchange './src/**/*.ts' -- echo 'Změna detekována!'"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"barrelsby": "^2.8.1",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typescript": "^5"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"jsdom": "^26.1.0",
"nodemon": "^3.1.10"
}
}