-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.72 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
67
68
69
70
71
72
{
"name": "@jannael/devsync",
"version": "1.2.1",
"private": false,
"description": "One file to keep your portfolio, CV, Github and linkedin in sync",
"keywords": [
"cv",
"github",
"linkedin",
"portfolio",
"sync"
],
"homepage": "https://devsync.work",
"bugs": {
"url": "https://github.com/jannael/devsync/issues"
},
"license": "CC-BY-NC-4.0",
"author": {
"name": "Jannael",
"url": "https://github.com/jannael"
},
"repository": {
"type": "git",
"url": "https://github.com/Jannael/devsync.git"
},
"bin": {
"@jannael/devsync": "./dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build ./apps/cli/index.ts --outfile=./dist/index.js --target=bun && bun run copy-template",
"copy-template": "node -e \"const fs = require('fs'); fs.cpSync('apps/@core', 'dist/@core', {recursive: true, filter: (src) => !src.endsWith('node_modules') && !src.includes('node_modules/') && !src.includes('\\\\node_modules')})\"",
"prepublishOnly": "bun run build",
"test": "bun test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"gradient-string": "3.0.0",
"puppeteer": "25.1.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/bun": "1.3.14",
"eslint": "10.4.1",
"eslint-plugin-astro": "1.7.0",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.8.0",
"typescript-eslint": "8.60.1"
},
"peerDependencies": {
"typescript": "6.0.3"
},
"engines": {
"bun": ">=1.0.0"
}
}