-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.45 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@lutinglt/gitea-github-theme",
"version": "1.27.0",
"license": "Apache-2.0",
"author": {
"name": "lutinglt",
"url": "https://github.com/lutinglt"
},
"type": "module",
"engines": {
"bun": ">=1.3.14"
},
"exports": {
"./core": "./src/index.ts",
"./vite-plugin": "./src/vite-plugin/index.ts",
"./styles": "./styles/index.ts",
"./styles/common": "./styles/common/index.ts",
"./themes": "./themes/index.ts",
"./primer": "./primer/index.ts"
},
"scripts": {
"lint": "bunx --bun eslint .",
"fmt": "bunx --bun prettier --write .",
"check": "tsc -b",
"bundle": "bun check && bunx --bun vite build",
"dev": "bun bundle && bun sync:theme",
"commit": "bun fmt && bun bundle && bun vitest",
"version": "bun scripts/version.ts",
"release": "bun bundle && bun update:locale",
"bundle:ci": "bun bundle && bun vitest",
"sync:theme": "bun scripts/syncTheme.ts",
"update:primer": "bun scripts/buildPrimerTSToken.ts",
"update:locale": "bun scripts/translate.ts",
"update:gitea": "bun scripts/updateGitea.ts",
"update:snapshot": "bun vitest --update",
"install:clean": "rm -rf node_modules bun.lock bun.lockb && bun install"
},
"devDependencies": {
"@catppuccin/palette": "^1.8.0",
"@eslint/js": "^10.0.1",
"@primer/primitives": "11.9.0",
"@types/node": "^25.9.5",
"@vanilla-extract/css": "^1.21.1",
"color2k": "^2.0.3",
"dotenv": "^17.4.2",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"lightningcss": "^1.32.0",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"style-dictionary": "^5.5.0",
"typescript": "^7.0.2",
"typescript-eslint": "^8.63.0",
"undici": "^7.28.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "avoid",
"proseWrap": "always",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf",
"plugins": [
"prettier-plugin-organize-imports"
],
"organizeImportsSkipDestructiveCodeActions": false,
"overrides": [
{
"files": [
"themes/github.ts"
],
"options": {
"printWidth": 150
}
}
]
}
}