-
-
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.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.49 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": "spiky-cli",
"version": "0.1.3",
"description": "This is the spiky-cli package. A package that can transpile spiky.js code into Python code with can be run on the SPIKE Prime Robot.",
"keywords": [
"spiky-cli",
"spiky.js",
"transpiler",
"robotics",
"robots",
"python",
"typescript"
],
"homepage": "https://github.com/leontm-dev/spiky-cli/wiki",
"bugs": {
"email": "lanneken09@gmail.com",
"url": "https://github.com/leontm-dev/spiky-cli/issues"
},
"license": "MIT",
"type": "module",
"types": "./dist/types",
"bin": {
"spiky-cli": "dist/index.js",
"spiky": "dist/index.js"
},
"author": {
"name": "Leon Anneken",
"email": "lanneken09@gmail.com",
"url": "https://leontm.me"
},
"files": [
"dist",
"package.json",
"LICENSE",
"readme.md"
],
"scripts": {
"format": "prettier --write \"./**/*.{ts,js,json}\"",
"build": "npm install && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leontm-dev/spiky-cli.git"
},
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/leontm"
},
"dependencies": {
"@wasm-fmt/ruff_fmt": "^0.10.0",
"ast-transpiler": "^0.0.72",
"chalk": "^5.3.0",
"commander": "^14.0.2",
"inquirer": "^13.0.1",
"read-pkg": "^10.0.0",
"spiky.js": "^0.4.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/args": "^5.0.3",
"@types/node": "^24.10.1",
"ts-node": "^10.9.2"
}
}