-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "@xetrics/init-ts",
"version": "2.0.0",
"description": "Creates a barebones Typescript project with batteries included.",
"main": "index.js",
"bin": {
"init-ts": "bin/index.js"
},
"scripts": {
"build": "npm run lint && rimraf build/ && tsc",
"watch": "npm run build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xetrics/init-ts.git"
},
"author": "xetrics",
"license": "Beerware",
"bugs": {
"url": "https://github.com/xetrics/init-ts/issues"
},
"homepage": "https://github.com/xetrics/init-ts#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.4.8",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@cjs-exporter/globby": "^13.1.3",
"chalk": "^4.1.2",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.6",
"yargs": "^17.7.2"
}
}