-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
{
"name": "butcss",
"version": "1.0.0",
"description": "Write backend logic in CSS - PostCSS parser with Express runtime",
"bin": "./dist/index.mjs",
"scripts": {
"prepare": "husky",
"lint": "tsc --noEmit && eslint .",
"fix": "eslint . --fix",
"tc": "tsc --noEmit --watch",
"exports": "tsx ./write-exports.ts",
"build": "tsdown --config ./tsdown.config.ts",
"dev": "concurrently --names \"R,T\" --prefix-colors \"blue.dim,magenta.dim\" \"tsdown --config ./tsdown.config.ts --watch\" \"tsc --noEmit --watch\"",
"start": "tsx --watch ./src/index.ts",
"test": "vitest run"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.mts",
"./dist/index.d.cts"
]
}
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^24.10.13",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tsdown": "^0.15.12",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"express": "^5.2.1",
"postcss": "^8.5.6"
}
}