-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
42
43
44
45
46
47
48
49
{
"name": "@arnaud-barre/rds",
"private": true,
"type": "module",
"version": "0.7.13",
"license": "MIT",
"scripts": {
"dev": "scripts/bundle.ts --dev",
"build": "scripts/bundle.ts",
"tsc": "tsc && tsc -p src/client/tsconfig.json",
"lint": "bun lint-ci --fix --cache",
"lint-ci": "eslint src scripts --max-warnings 0",
"prettier": "bun prettier-ci --write",
"prettier-ci": "prettier --cache --check '*.{js,json,md}' '{.github,src,scripts}/**/*.{js,ts,yml}' '!**/*.min.js'",
"ci": "tsc && bun lint-ci && bun prettier-ci && bun run build && cd dist && bun link && cd ../template && bun i --save-text-lockfile && bun link @arnaud-barre/rds && bun ci"
},
"prettier": {
"plugins": [
"@arnaud-barre/prettier-plugin-sort-imports"
]
},
"peerDependencies": {
"@arnaud-barre/downwind": "^0.7.7",
"eslint": "^9",
"typescript": "^5"
},
"dependencies": {
"@arnaud-barre/config-loader": "^0.7.3",
"@swc/core": "^1.7.35",
"chokidar": "^4.0.3",
"es-module-lexer": "^1.5.4",
"esbuild": "^0.24.0",
"lightningcss": "^1.28.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@arnaud-barre/downwind": "^0.7.7",
"@arnaud-barre/eslint-config": "^5.2.0",
"@arnaud-barre/prettier-plugin-sort-imports": "^0.1.3",
"@arnaud-barre/tnode": "^0.24.0",
"@types/eslint": "^9.6.1",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/ws": "^8.5.13",
"eslint": "^9.17.0",
"prettier": "3.0.3",
"typescript": "~5.7"
}
}