mirror of
https://github.com/alexgo-io/stacks.js.git
synced 2026-01-12 22:52:34 +08:00
* feat: add pc post condition builder * chore: add fully-qualified nft token name support to pc builder * chore: add docs for pc methods --------- Co-authored-by: janniks <janniks@users.noreply.github.com>
79 lines
2.7 KiB
JSON
79 lines
2.7 KiB
JSON
{
|
|
"private": true,
|
|
"name": "root",
|
|
"workspaces": [
|
|
"packages/**"
|
|
],
|
|
"prettier": "@stacks/prettier-config",
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap",
|
|
"build": "lerna run build",
|
|
"build:docs": "rimraf docs && typedoc --tsconfig tsconfig.typedoc.json",
|
|
"ci:version": "npx lerna version --conventional-commits --no-push --no-git-tag-version --yes && npx lerna bootstrap",
|
|
"clean": "lerna clean",
|
|
"lerna": "lerna",
|
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
"lint:eslint": "eslint \"packages/**/src/**/*.{ts,tsx|!(d.ts)}\" -f unix",
|
|
"lint:eslint:fix": "eslint \"packages/**/src/**/*.{ts,tsx}\" -f unix --fix",
|
|
"lint:fix": "eslint \"packages/**/src/**/*.{ts,tsx}\" -f unix --fix",
|
|
"lint:prettier": "prettier --check \"packages/**/src/**/*.{ts,tsx|!(d.ts)}\" *.js --ignore-path .gitignore",
|
|
"lint:prettier:fix": "prettier --write \"packages/**/src/**/*.{ts,tsx|!(d.ts)}\" *.js --ignore-path .gitignore",
|
|
"madge": "madge --circular --extensions ts --exclude '(triplesec|d).ts' packages/",
|
|
"pack": "lerna run pack",
|
|
"test": "lerna run test",
|
|
"typecheck": "lerna run typecheck --parallel --no-bail --stream",
|
|
"prepare": "husky install .github/.husky"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.23.0",
|
|
"@commitlint/cli": "^17.4.0",
|
|
"@commitlint/config-conventional": "^17.4.0",
|
|
"@janniks/typedoc-theme-stacks": "^1.2.3",
|
|
"@stacks/eslint-config": "^1.2.0",
|
|
"@stacks/prettier-config": "^0.0.10",
|
|
"@types/bs58check": "^2.1.0",
|
|
"@types/jest": "^28.1.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
"@typescript-eslint/parser": "^5.11.0",
|
|
"assert": "^2.0.0",
|
|
"conventional-changelog-conventionalcommits": "^5.0.0",
|
|
"esbuild": "^0.14.23",
|
|
"esbuild-loader": "^2.18.0",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"husky": "^8.0.3",
|
|
"inspectpack": "^4.7.1",
|
|
"jest": "^28.1.3",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"jest-module-name-mapper": "^0.1.5",
|
|
"lerna": "^5.5.2",
|
|
"madge": "^5.0.1",
|
|
"path-browserify": "^1.0.1",
|
|
"prettier": "^2.5.1",
|
|
"rimraf": "^3.0.2",
|
|
"stream-http": "^3.2.0",
|
|
"ts-jest": "^28.0.8",
|
|
"typedoc": "^0.23.20",
|
|
"typedoc-plugin-replace-text": "^2.1.0",
|
|
"typescript": "^4.9.5",
|
|
"webpack": "^5.36.1",
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
"webpack-cli": "^4.10.0"
|
|
},
|
|
"overrides": {
|
|
"blockstack": {
|
|
"ajv": "6.12.6"
|
|
},
|
|
"json5": "2.2.3",
|
|
"nth-check": "2.0.1",
|
|
"schema-inspector": "2.0.2",
|
|
"socket.io-client": "4.5.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hirosystems/stacks.js.git"
|
|
}
|
|
}
|