-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "bitrix24-create-app",
"description": "Command line for create a project with your own templates",
"version": "2.2.0",
"author": "Валентин <valentin.distortion@gmail.com>",
"license": "GPL",
"private": false,
"type": "module",
"main": "./dist/index.js",
"homepage": "https://vdistortion.github.io/bitrix24-create-app/",
"repository": {
"type": "git",
"url": "git@github.com:vdistortion/bitrix24-create-app.git"
},
"bin": {
"bitrix24-create-app": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"angular",
"vue",
"promises",
"components",
"typescript",
"bitrix24",
"bx24"
],
"scripts": {
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"build": "shx rm -rf dist && tsc && shx cp -r templates dist",
"public:lib": "npm run build && npm publish",
"public:gh-pages": "gh-pages -d docs/.vitepress/dist -t --nojekyll",
"public": "npm run docs:build && npm run public:gh-pages",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"kolorist": "^1.8.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.4.0",
"@types/prompts": "^2.4.9",
"gh-pages": "^6.1.1",
"prettier": "3.3.3",
"shx": "^0.3.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitepress": "^1.3.4"
}
}