Skip to content

Commit

Permalink
FIX: add dist folder to files
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinanielsen committed Dec 3, 2023
1 parent 1bbfde3 commit 3adc2c7
Show file tree
Hide file tree
Showing 3 changed files with 1,314 additions and 3,069 deletions.
5 changes: 5 additions & 0 deletions .changeset/empty-sloths-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tfjs-image-node": patch
---

FIX! Add dist folder to files
116 changes: 58 additions & 58 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
{
"name": "tfjs-image-node",
"version": "2.0.3",
"description": "A simple image classifier using tfjs and running in node.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest",
"build": "tsup --format cjs,esm --dts",
"test": "vitest run",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"prerelease": "pnpm run lint && pnpm format && pnpm run test && pnpm run build",
"release": "changeset publish",
"format": "prettier --write ."
},
"homepage": "https://github.com/kevinanielsen/tfjs-image-node/",
"repository": {
"type": "git",
"url": "https://github.com/kevinanielsen/tfjs-image-node/"
},
"keywords": [
"tfjs",
"ai",
"image",
"classifier",
"node",
"node.js",
"tensorflow",
"tensorflow.js",
"javascript",
"typescript",
"npm"
],
"author": {
"name": "Kevin Alex Nielsen",
"email": "kevinanielsen@outlook.com",
"url": "https://kevinanielsen.com/"
},
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@tensorflow/tfjs": "^4.13.0",
"@tensorflow/tfjs-node": "^4.13.0",
"jimp": "^0.22.10"
}
"name": "tfjs-image-node",
"version": "2.0.3",
"description": "A simple image classifier using tfjs and running in node.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"dev": "vitest",
"build": "tsup --format cjs,esm --dts",
"test": "vitest run",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"prerelease": "pnpm run lint && pnpm format && pnpm run test && pnpm run build",
"release": "changeset publish",
"format": "prettier --write ."
},
"homepage": "https://github.com/kevinanielsen/tfjs-image-node/",
"repository": {
"type": "git",
"url": "https://github.com/kevinanielsen/tfjs-image-node/"
},
"keywords": [
"tfjs",
"ai",
"image",
"classifier",
"node",
"node.js",
"tensorflow",
"tensorflow.js",
"javascript",
"typescript",
"npm"
],
"author": {
"name": "Kevin Alex Nielsen",
"email": "kevinanielsen@outlook.com",
"url": "https://kevinanielsen.com/"
},
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@tensorflow/tfjs": "^4.13.0",
"@tensorflow/tfjs-node": "^4.13.0",
"jimp": "^0.22.10"
}
}
Loading

0 comments on commit 3adc2c7

Please sign in to comment.