-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "themify-cli",
"version": "1.0.0",
"description": "CLI that helps you to add Bootstrap CSS and customize it",
"keywords": [
"blue-web",
"bootstrap",
"ui",
"css",
"sass",
"scss",
"themify",
"themify-cli"
],
"files": [
"dist",
"styles"
],
"bin": {
"themify": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"build-and-run": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bruegmann/themify-cli.git"
},
"license": "LGPL-3.0-or-later",
"dependencies": {
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.3",
"commander": "^12.1.0",
"postcss": "^8.4.47",
"postcss-minify": "^1.1.0",
"postcss-only-vars": "^1.0.0",
"prompts": "^2.4.2",
"sass": "1.77.6"
},
"devDependencies": {
"@types/node": "^22.7.7",
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}