-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.36 KB
/
package.json
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
{
"name": "@arnaud-barre/downwind",
"description": "A bundler-first & PostCSS-independent implementation of Tailwind",
"private": true,
"type": "module",
"version": "0.7.6",
"author": "Arnaud Barré (https://github.com/ArnaudBarre)",
"license": "MIT",
"scripts": {
"postinstall": "cd playground/vite && bun install",
"dev": "scripts/bundle.ts --dev",
"build": "scripts/bundle.ts",
"tsc": "tsc && tsc -p playground/vite",
"test": "tests/run-tests.ts --update-snapshots",
"test-ci": "tests/run-tests.ts",
"lint-ci": "eslint ./ --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "bun run prettier-ci --write",
"prettier-ci": "prettier --cache --check '**/*.{cjs,ts,tsx,html,css,json,md,yml}'",
"ci": "bun run build && bun tsc && bun test-ci && bun lint-ci && bun prettier-ci"
},
"prettier": {
"quoteProps": "consistent",
"plugins": [
"@arnaud-barre/prettier-plugin-sort-imports"
]
},
"dependencies": {
"@arnaud-barre/config-loader": "^0.7.1"
},
"devDependencies": {
"@arnaud-barre/eslint-config": "^4.1.1",
"@arnaud-barre/prettier-plugin-sort-imports": "^0.1.3",
"@arnaud-barre/tnode": "^0.19.2",
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"lightningcss": "^1.24.1",
"prettier": "3.0.3",
"typescript": "^5.4.5",
"vite": "^5.2.9"
}
}