update to v0.9.1.
add npm package link prep for jsr support (I hope) add favicon update installation instructions
This commit is contained in:
36
package.json
36
package.json
@@ -1,30 +1,45 @@
|
||||
{
|
||||
"name": "twtxt-lib",
|
||||
"version": "0.9.0",
|
||||
"description": "",
|
||||
"version": "0.9.1",
|
||||
"description": "An isomorphic TypeScript library of utility functions for parsing and interacting with twtxt.txt files.",
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "Eric Woodward",
|
||||
"email": "hey@itsericwoodward.com",
|
||||
"url": "https://www.itsericwoodward.com"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": ""
|
||||
},
|
||||
"keywords": [],
|
||||
"type": "module",
|
||||
"module": "./dist-node/index.js",
|
||||
"types": "./dist-node/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist-node/index.js"
|
||||
}
|
||||
},
|
||||
"type": "module",
|
||||
"files": [
|
||||
"dist-node"
|
||||
],
|
||||
"module": "./dist-node/index.js",
|
||||
"types": "./dist-node/index.d.ts",
|
||||
"scripts": {
|
||||
"build:dev": "BUILD_ENV=development node ./build.js",
|
||||
"build": "BUILD_ENV=production node ./build.js",
|
||||
"build:dev": "BUILD_ENV=development node ./build.js",
|
||||
"build-tsc": "tsc",
|
||||
"ci": "yarn build:release",
|
||||
"ci": "yarn build",
|
||||
"dev": "vite",
|
||||
"preview": "vite preview",
|
||||
"prepublishOnly": "yarn build",
|
||||
"postpublish": "git push && git push --tags",
|
||||
"test": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@exodus/blakejs": "^1.1.1-exodus.0",
|
||||
"base32.js": "^0.1.0",
|
||||
"dayjs": "^1.11.19"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^25.3.0",
|
||||
"prettier": "^3.8.1",
|
||||
@@ -35,10 +50,5 @@
|
||||
"vite-plugin-node-polyfills": "^0.25.0",
|
||||
"vitest": "^4.0.18"
|
||||
},
|
||||
"packageManager": "yarn@4.12.0",
|
||||
"dependencies": {
|
||||
"@exodus/blakejs": "^1.1.1-exodus.0",
|
||||
"base32.js": "^0.1.0",
|
||||
"dayjs": "^1.11.19"
|
||||
}
|
||||
"packageManager": "yarn@4.12.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user