-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "tfjs-image-node",
"version": "2.2.0",
"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": "pnpm build && 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.8",
"@types/node": "^20.16.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@tensorflow/tfjs": "^4.21.0",
"@tensorflow/tfjs-node": "^4.21.0",
"jimp": "^0.22.12"
}
}