-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.44 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.44 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "spiky.js",
"version": "0.4.0",
"description": "A package full of building blocks to interact with the Spike PRIME Robots, that can be transpiled into on the robots executable Python code.",
"exports": {
".": "./dist/Runloop.js",
"./app": "./dist/App/index.js",
"./app/bargraph": "./dist/App/Bargraph.js",
"./app/display": "./dist/App/Display.js",
"./app/linegraph": "./dist/App/Linegraph.js",
"./app/music": "./dist/App/Music.js",
"./app/sound": "./dist/App/Sound.js",
"./hub": "./dist/Hub/index.js",
"./hub/button": "./dist/Hub/Button.js",
"./hub/light": "./dist/Hub/Light.js",
"./hub/lightmatrix": "./dist/Hub/LightMatrix.js",
"./hub/motionsensor": "./dist/Hub/MotionSensor.js",
"./hub/port": "./dist/Hub/Port.js",
"./hub/sound": "./dist/Hub/Sound.js",
"./color": "./dist/Color.js",
"./colormatrix": "./dist/ColorMatrix.js",
"./colorsensor": "./dist/ColorSensor.js",
"./device": "./dist/Device.js",
"./distancesensor": "./dist/DistanceSensor.js",
"./forcesensor": "./dist/ForceSensor.js",
"./motor": "./dist/Motor.js",
"./motorpair": "./dist/MotorPair.js",
"./orientation": "./dist/Orientation.js",
"./runloop": "./dist/Runloop.js"
},
"files": [
"dist/",
"LICENSE.md",
"readme.md",
"package.json"
],
"funding": {
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/leontm"
},
"scripts": {
"build": "tsc -build && npm install",
"test": "echo No test command provided"
},
"keywords": [
"spike-prime",
"python",
"transpilation",
"transpile",
"typescript",
"robots",
"education"
],
"types": "./dist/index.d.ts",
"author": "Leon Anneken <lanneken09@gmail.com> (https://leontm.me)",
"homepage": "https://leontm.me/apps/spiky.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/leontm-dev/spiky.js/issues"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"directory": "src",
"url": "git+https://github.com/leontm-dev/spiky.js.git"
},
"maintainers": [
"Leon Anneken <lanneken09@gmail.com> (https://leontm.me)"
],
"type": "module",
"pricing": "Free",
"readme": "https://github.com/leontm-dev/spiky.js/blob/master/readme.md",
"displayName": "spiky.js",
"devDependencies": {
"@types/node": "^20.10.8",
"typescript": "^5.0.4"
},
"categories": [
"Education",
"Programming Languages",
"Testing",
"Other"
]
}