mirror of
https://github.com/pezkuwichain/pezkuwi-dev.git
synced 2026-04-22 03:17:57 +00:00
Initial rebrand: @polkadot -> @pezkuwi (3 packages)
- Package namespace: @polkadot/dev -> @pezkuwi/dev - Repository: polkadot-js/dev -> pezkuwichain/pezkuwi-dev - Author: Pezkuwi Team <team@pezkuwichain.io> Packages: - @pezkuwi/dev (build tools, linting, CI scripts) - @pezkuwi/dev-test (test runner) - @pezkuwi/dev-ts (TypeScript build) Upstream: polkadot-js/dev v0.83.3
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"bugs": "https://github.com/pezkuwi/dev/issues",
|
||||
"description": "A collection of shared CI scripts and development environment used by @pezkuwi projects",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"homepage": "https://github.com/pezkuwi/dev/tree/master/packages/dev#readme",
|
||||
"license": "Apache-2.0",
|
||||
"name": "@pezkuwi/dev",
|
||||
"repository": {
|
||||
"directory": "packages/dev",
|
||||
"type": "git",
|
||||
"url": "https://github.com/pezkuwi/dev.git"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "0.84.2",
|
||||
"bin": {
|
||||
"polkadot-ci-ghact-build": "./scripts/polkadot-ci-ghact-build.mjs",
|
||||
"polkadot-ci-ghact-docs": "./scripts/polkadot-ci-ghact-docs.mjs",
|
||||
"polkadot-ci-ghpages-force": "./scripts/polkadot-ci-ghpages-force.mjs",
|
||||
"polkadot-dev-build-docs": "./scripts/polkadot-dev-build-docs.mjs",
|
||||
"polkadot-dev-build-ts": "./scripts/polkadot-dev-build-ts.mjs",
|
||||
"polkadot-dev-circular": "./scripts/polkadot-dev-circular.mjs",
|
||||
"polkadot-dev-clean-build": "./scripts/polkadot-dev-clean-build.mjs",
|
||||
"polkadot-dev-contrib": "./scripts/polkadot-dev-contrib.mjs",
|
||||
"polkadot-dev-copy-dir": "./scripts/polkadot-dev-copy-dir.mjs",
|
||||
"polkadot-dev-copy-to": "./scripts/polkadot-dev-copy-to.mjs",
|
||||
"polkadot-dev-deno-map": "./scripts/polkadot-dev-deno-map.mjs",
|
||||
"polkadot-dev-run-lint": "./scripts/polkadot-dev-run-lint.mjs",
|
||||
"polkadot-dev-run-node-ts": "./scripts/polkadot-dev-run-node-ts.mjs",
|
||||
"polkadot-dev-run-test": "./scripts/polkadot-dev-run-test.mjs",
|
||||
"polkadot-dev-version": "./scripts/polkadot-dev-version.mjs",
|
||||
"polkadot-dev-yarn-only": "./scripts/polkadot-dev-yarn-only.mjs",
|
||||
"polkadot-exec-eslint": "./scripts/polkadot-exec-eslint.mjs",
|
||||
"polkadot-exec-ghpages": "./scripts/polkadot-exec-ghpages.mjs",
|
||||
"polkadot-exec-ghrelease": "./scripts/polkadot-exec-ghrelease.mjs",
|
||||
"polkadot-exec-node-test": "./scripts/polkadot-exec-node-test.mjs",
|
||||
"polkadot-exec-rollup": "./scripts/polkadot-exec-rollup.mjs",
|
||||
"polkadot-exec-tsc": "./scripts/polkadot-exec-tsc.mjs",
|
||||
"polkadot-exec-webpack": "./scripts/polkadot-exec-webpack.mjs"
|
||||
},
|
||||
"exports": {
|
||||
"./config/eslint": "./config/eslint.js",
|
||||
"./config/prettier.cjs": "./config/prettier.cjs",
|
||||
"./config/tsconfig.json": "./config/tsconfig.json",
|
||||
"./rootJs/dynamic.mjs": "./src/rootJs/dynamic.mjs",
|
||||
"./rootJs/testJson.json": "./src/rootJs/testJson.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@eslint/js": "^8.56.0",
|
||||
"@pezkuwi/dev-test": "^0.84.2",
|
||||
"@pezkuwi/dev-ts": "^0.84.2",
|
||||
"@rollup/plugin-alias": "^5.1.1",
|
||||
"@rollup/plugin-commonjs": "^25.0.8",
|
||||
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
|
||||
"@rollup/plugin-inject": "^5.0.5",
|
||||
"@rollup/plugin-json": "^6.1.0",
|
||||
"@rollup/plugin-node-resolve": "^15.3.1",
|
||||
"@tsconfig/strictest": "^2.0.2",
|
||||
"@typescript-eslint/eslint-plugin": "^6.19.1",
|
||||
"@typescript-eslint/parser": "^6.19.1",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-config-standard": "^17.1.0",
|
||||
"eslint-import-resolver-node": "^0.3.9",
|
||||
"eslint-import-resolver-typescript": "^3.6.1",
|
||||
"eslint-plugin-deprecation": "^2.0.0",
|
||||
"eslint-plugin-header": "^3.1.1",
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-import-newlines": "^1.3.4",
|
||||
"eslint-plugin-jest": "^27.6.3",
|
||||
"eslint-plugin-n": "^16.6.2",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-react": "^7.33.2",
|
||||
"eslint-plugin-react-hooks": "^4.6.0",
|
||||
"eslint-plugin-simple-import-sort": "^10.0.0",
|
||||
"eslint-plugin-sort-destructure-keys": "^1.5.0",
|
||||
"espree": "^9.6.1",
|
||||
"gh-pages": "^6.1.1",
|
||||
"gh-release": "^7.0.2",
|
||||
"globals": "^13.24.0",
|
||||
"json5": "^2.2.3",
|
||||
"madge": "^6.1.0",
|
||||
"rollup": "^4.9.6",
|
||||
"rollup-plugin-cleanup": "^3.2.1",
|
||||
"tslib": "^2.7.0",
|
||||
"typescript": "^5.5.4",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.1.4",
|
||||
"webpack-dev-server": "^4.15.1",
|
||||
"webpack-merge": "^5.10.0",
|
||||
"webpack-subresource-integrity": "^5.2.0-rc.1",
|
||||
"yargs": "^17.7.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testing-library/react": "^14.1.2",
|
||||
"@types/node": "^20.11.5",
|
||||
"@types/react": "^18.2.48",
|
||||
"@types/react-dom": "^18.2.18",
|
||||
"@types/yargs": "^17.0.32",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-is": "^18.2.0",
|
||||
"styled-components": "^6.1.8"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user