-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 874 Bytes
/
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
{
"name": "create-playdate",
"description": "Generate a Playdate Lua SDK project, which you can then manage with npm, yarn or pnpm",
"version": "3.4.0",
"repository": {
"type": "git",
"url": "https://github.com/colingourlay/create-playdate"
},
"license": "MIT",
"bin": "./bin.js",
"main": "./index.js",
"dependencies": {
"kleur": "^4.1.4",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/prettier": "^2.4.2",
"@types/prompts": "^2.0.14",
"eslint": "^8.10.0",
"prettier": "^2.5.0",
"release-it": "^16.0.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore \"./*.js\" && npm run check-format",
"format": "npm run check-format -- --write",
"check-format": "prettier --check . --config .prettierrc --ignore-path .gitignore",
"release": "release-it"
},
"files": [
"bin.js",
"index.js",
"template"
],
"type": "module"
}