- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
155 lines
3.5 KiB
JSON
155 lines
3.5 KiB
JSON
{
|
|
"name": "ipfs-unixfs",
|
|
"version": "11.2.5",
|
|
"description": "JavaScript implementation of IPFS' unixfs (a Unix FileSystem representation on top of a MerkleDAG)",
|
|
"license": "Apache-2.0 OR MIT",
|
|
"homepage": "https://github.com/ipfs/js-ipfs-unixfs/tree/main/packages/ipfs-unixfs#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ipfs/js-ipfs-unixfs.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ipfs/js-ipfs-unixfs/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"keywords": [
|
|
"IPFS"
|
|
],
|
|
"type": "module",
|
|
"types": "./dist/src/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"!dist/test",
|
|
"!**/*.tsbuildinfo"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/src/index.js"
|
|
}
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"releaseRules": [
|
|
{
|
|
"breaking": true,
|
|
"release": "major"
|
|
},
|
|
{
|
|
"revert": true,
|
|
"release": "patch"
|
|
},
|
|
{
|
|
"type": "feat",
|
|
"release": "minor"
|
|
},
|
|
{
|
|
"type": "fix",
|
|
"release": "patch"
|
|
},
|
|
{
|
|
"type": "docs",
|
|
"release": "patch"
|
|
},
|
|
{
|
|
"type": "test",
|
|
"release": "patch"
|
|
},
|
|
{
|
|
"type": "deps",
|
|
"release": "patch"
|
|
},
|
|
{
|
|
"scope": "no-release",
|
|
"release": false
|
|
}
|
|
]
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"presetConfig": {
|
|
"types": [
|
|
{
|
|
"type": "feat",
|
|
"section": "Features"
|
|
},
|
|
{
|
|
"type": "fix",
|
|
"section": "Bug Fixes"
|
|
},
|
|
{
|
|
"type": "chore",
|
|
"section": "Trivial Changes"
|
|
},
|
|
{
|
|
"type": "docs",
|
|
"section": "Documentation"
|
|
},
|
|
{
|
|
"type": "deps",
|
|
"section": "Dependencies"
|
|
},
|
|
{
|
|
"type": "test",
|
|
"section": "Tests"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"CHANGELOG.md",
|
|
"package.json"
|
|
]
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"scripts": {
|
|
"generate": "protons src/unixfs.proto",
|
|
"test": "aegir test",
|
|
"test:node": "aegir test -t node --cov",
|
|
"test:chrome": "aegir test -t browser --cov",
|
|
"test:firefox": "aegir test -t browser -- --browser firefox",
|
|
"build": "aegir build",
|
|
"clean": "aegir clean",
|
|
"lint": "aegir lint",
|
|
"dep-check": "aegir dep-check",
|
|
"doc-check": "aegir doc-check",
|
|
"release": "aegir release"
|
|
},
|
|
"dependencies": {
|
|
"protons-runtime": "^5.5.0",
|
|
"uint8arraylist": "^2.4.8"
|
|
},
|
|
"devDependencies": {
|
|
"aegir": "^47.0.16",
|
|
"protons": "^7.6.1",
|
|
"uint8arrays": "^5.1.0"
|
|
},
|
|
"browser": {
|
|
"fs": false
|
|
},
|
|
"sideEffects": false
|
|
}
|