-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "skeleton-lib-cli",
"version": "0.4.0",
"description": "[RU]Интерфейс командной строки, который инициализирует скелет библиотеки.[EN]Command line interface that invokes skeleton libraries",
"keywords": [
"skeleton-lib",
"skeleton",
"template",
"base",
"lib",
"library",
"node",
"cli",
"rollup"
],
"files": [
"dist",
"docs"
],
"main": "dist/skeleton-lib-cli.cjs.js",
"types": "dist/skeleton-lib-cli.d.ts",
"bin": "./bin/cli.js",
"scripts": {
"build": "rimraf dist && rollup --c rollup.config.ts --configPlugin typescript && rimraf dist/types",
"lint": "eslint --ignore-path .gitignore .",
"lint:format": "prettier --ignore-path .gitignore --write .",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"demo:cli": "rimraf demo && node bin/cli.js --outDir demo",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ManushovRodion/skeleton-lib-cli.git"
},
"author": "ManushovRodion <rodion-krox@mauil.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ManushovRodion/skeleton-lib-cli/issues"
},
"homepage": "https://github.com/ManushovRodion/skeleton-lib-cli#README.md",
"dependencies": {
"i18next": "23.5.1",
"prettier": "3.0.3",
"prompts": "2.4.2"
},
"devDependencies": {
"@types/prompts": "2.4.5",
"@rollup/plugin-json": "6.0.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@types/jest": "29.5.5",
"@types/node": "20.8.3",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"rimraf": "5.0.5",
"rollup": "4.0.2",
"rollup-plugin-dts": "6.1.0",
"ts-jest": "29.1.1",
"tslib": "2.6.2",
"typescript": "5.2.2"
}
}