-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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
{
"name": "spiky-cli",
"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.",
"version": "0.0.7",
"license": "MIT",
"type": "module",
"bin": {
"spiky-cli": "dist/index.js",
"spiky": "dist/index.js"
},
"author": {
"name": "Leon Anneken",
"email": "lanneken09@gmail.com",
"url": "https://leontm.me"
},
"keywords": [
"spiky-cli",
"spiky.js",
"transpiler"
],
"files": [
"dist/index.js",
"dist/commands",
"dist/functions"
],
"scripts": {
"format": "prettier --write \"./**/*.{ts,js,json}\"",
"build": "yarn && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leontm-dev/spiky-cli.git"
},
"bugs": {
"email": "lanneken09@gmail.com",
"url": "https://github.com/leontm-dev/spiky-cli/issues"
},
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/leontm"
},
"homepage": "https://github.com/leontm-dev/spiky-cli/wiki",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^12.0.0",
"read-pkg": "^9.0.1",
"spiky.js": "^0.2.0"
},
"devDependencies": {
"@types/args": "^5.0.3",
"@types/node": "^22.7.5",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}