-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
46 lines (46 loc) · 1.62 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
{
"name": "posenet2scratch",
"version": "1.0.0",
"description": "PoseNet2Scratch can detect human pose and add special Scratch blocks that can get x and y position of each part of the body.",
"scripts": {
"build": "rimraf ./dist && mkdirp ./dist && node ./scripts/build.js --name=posenet2scratch --block=\"./scratch-vm/src/extensions/scratch3_posenet2scratch\" --entry=\"./scratch-gui/src/lib/libraries/extensions/posenet2scratch\" --gui=\"../\" --output=\"./dist\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/champierre/posenet2scratch.git"
},
"keywords": [
"scratch",
"xcratch"
],
"author": "Junya Ishihara",
"license": "BSD 3-Clause",
"bugs": {
"url": "https://github.com/champierre/posenet2scratch/issues"
},
"homepage": "https://github.com/champierre/posenet2scratch#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"command-line-args": "^5.1.1",
"eslint": "^7.21.0",
"eslint-config-scratch": "^6.0.0",
"eslint-plugin-react": "^7.22.0",
"fs-extra": "^9.0.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.26.11",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0"
},
"dependencies": {}
}