-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.49 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.49 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
{
"name": "concrete",
"version": "0.5.0",
"main": "index.js",
"repository": "git@github.com:bezbac/concrete.git",
"author": "Ben Bachem <10088265+bezbac@users.noreply.github.com>",
"scripts": {
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"build": "ts-node src/main.ts",
"lint": "eslint .",
"release": "release-it",
"apply/vscode": "rm -rf ~/.vscode/extensions/bezbac.concrete-vscode-* && cp -R './output/vscode' ~/.vscode/extensions/bezbac.concrete-vscode-$npm_package_version",
"apply/helix": "mkdir -p ~/.config/helix/themes/ && cp -R './output/helix/concrete.toml' ~/.config/helix/themes/concrete.toml",
"apply/zellij": "mkdir -p ~/.config/zellij/themes/ && cp -R './output/zellij/concrete.kdl' ~/.config/zellij/themes/concrete.kdl",
"apply/alacritty": "mkdir -p ~/.config/alacritty/themes/ && cp -R './output/alacritty/concrete.yaml' ~/.config/alacritty/themes/concrete.yaml"
},
"private": "true",
"devDependencies": {
"@types/color": "^3.0.1",
"@types/mustache": "^4.1.1",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"release-it": "^14.11.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"color": "^3.1.3",
"html-template-tag": "^4.0.0",
"mustache": "^4.2.0",
"xmlbuilder": "^15.1.1",
"yaml": "^2.2.2"
}
}