-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 935 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
36
{
"name": "@lavateinn/create",
"version": "1.0.2",
"description": "The initializer is a CLI tool to create a new Lævateinn (lavateinn) project.",
"author": "Star Inc.",
"homepage": "https://github.com/star-inc/lavateinn",
"repository": "https://github.com/star-inc/create-lavateinn",
"bugs": {
"url": "https://github.com/star-inc/create-lavateinn/issues"
},
"license": "BSD-3-Clause",
"main": "initializer.mjs",
"bin": {
"create": "initializer.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint:es": "eslint .",
"lint:es:fix": "eslint . --fix"
},
"dependencies": {
"decompress": "^4.2.1",
"got": "^14.4.5",
"inquirer": "^12.3.2",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/got": "^9.6.12",
"eslint": "^8.17.0",
"eslint-config-nymph": "^0.15.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-mocha": "^10.5.0"
}
}