-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "@kts-specials/create-mediaproject-example",
"version": "3.1.2",
"description": "Package-template for kts special project frontend",
"author": "KTS Studio <hello@ktsstudio.ru> (https://kts.studio)",
"repository": {
"type": "git",
"url": "https://github.com/ktsstudio/create-mediaproject-example.git"
},
"bugs": {
"email": "hello@ktsstudio.ru",
"url": "https://github.com/ktsstudio/create-mediaproject-example/issues"
},
"homepage": "https://github.com/ktsstudio/create-mediaproject-example#readme",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"module": "./dist/index.js",
"bin": "./dist/index.js",
"engines": {
"node": ">=16.0.0"
},
"packageManager": "yarn@1.22.22",
"files": [
"dist/",
"README.md",
"package.json"
],
"scripts": {
"lint": "eslint src --fix",
"codestyle": "prettier --write .",
"start": "tsx ./src/index.ts",
"dev": "yarn start --dev",
"clear": "rm -rf ./dist",
"copy-templates": "cp -r ./src/templates ./dist/templates",
"build": "yarn clear && tsc && yarn copy-templates",
"precommit": "yarn run lint && yarn run codestyle"
},
"dependencies": {
"@inquirer/prompts": "^4.3.0",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"ejs": "^3.1.9",
"shelljs": "^0.8.5",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^20.11.30",
"@types/shelljs": "^0.8.15",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-module-utils": "^2.8.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
}
}