mirror of
https://github.com/bs-community/blessing-skin-plugins.git
synced 2025-01-07 03:06:43 +08:00
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"version": "0.0.0",
|
|
"engines": {
|
|
"node": ">=10.15.0"
|
|
},
|
|
"private": true,
|
|
"workspaces": [
|
|
"plugins/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "rollup -c --configPlugin=swc3 -w",
|
|
"build": "rollup -c --configPlugin=swc3",
|
|
"lint": "tsc -p . --noEmit && svelte-check",
|
|
"fmt": "prettier --plugin-search-dir=. --write .",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@gplane/svelte-jest": "^0.1.0",
|
|
"@gplane/tsconfig": "^1.1.0",
|
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-replace": "^5.0.2",
|
|
"@swc/core": "^1.3.28",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/svelte": "^3.2.2",
|
|
"@types/jest": "^26.0.10",
|
|
"@types/node": "^14.6.1",
|
|
"@types/react": "^16.9.32",
|
|
"@types/react-dom": "^16.9.6",
|
|
"@types/testing-library__jest-dom": "^5.14.5",
|
|
"fast-glob": "^3.2.12",
|
|
"jest": "^26.4.2",
|
|
"prettier": "^2.8.3",
|
|
"prettier-plugin-svelte": "^2.9.0",
|
|
"rollup": "^3.10.1",
|
|
"rollup-plugin-svelte": "^7.1.0",
|
|
"rollup-plugin-swc3": "^0.8.0",
|
|
"svelte": "^3.55.1",
|
|
"svelte-check": "^1.0.26",
|
|
"svelte-preprocess": "^5.0.1",
|
|
"ts-jest": "^26.3.0",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"tabWidth": 2
|
|
}
|
|
}
|