-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "@splrge/create-ts-app",
"version": "1.0.3",
"description": "Create a new typescript project",
"main": "src/index.js",
"bin": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SPLRGE/create-ts-app.git"
},
"bugs": {
"url": "https://github.com/SPLRGE/create-ts-app/issues"
},
"homepage": "https://github.com/SPLRGE/create-ts-app#readme",
"keywords": [
"ts",
"typescript",
"starter",
"template",
"create-ts-app"
],
"author": "Cetus <cetus@splrge.dev>",
"license": "MIT",
"dependencies": {
"consola": "^3.2.3",
"giget": "^1.1.3",
"nypm": "^0.3.3",
"pathe": "^1.1.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0"
}
}