-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 KB
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
61
62
63
64
{
"name": "python-react-ml-root",
"private": true,
"version": "1.0.0",
"description": "Run Python ML models directly in React and React Native apps - no backend required",
"keywords": [
"machine-learning",
"react",
"react-native",
"python",
"pyodide",
"onnx",
"tensorflow",
"tensorflowjs",
"multi-runtime",
"offline-ml",
"client-side-ml",
"ml-inference"
],
"homepage": "https://github.com/ShyamSathish005/python-react-ml#readme",
"repository": {
"type": "git",
"url": "https://github.com/ShyamSathish005/python-react-ml.git"
},
"bugs": {
"url": "https://github.com/ShyamSathish005/python-react-ml/issues"
},
"license": "MIT",
"author": "ShyamSathish005",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "jest",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"clean": "npm run clean --workspaces",
"dev:react-example": "npm run dev --workspace=examples/react-web",
"dev:rn-example": "npm run start --workspace=examples/react-native-app",
"publish:all": "npm run build && npm publish --workspaces --access public"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest-environment-jsdom": "^30.1.2",
"lerna": "^7.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.4",
"tsup": "^7.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}