This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tsci",
"version": "2023.3.19",
"description": "TypeScript CLI for creating HTML & CSS & TypeScript project with different bundlers.",
"exports": "./lib/cli.js",
"types": "./lib/cli.d.ts",
"bin": {
"tsci": "bin/tsci.js"
},
"type": "module",
"scripts": {
"dev": "tsc",
"build": "tsc",
"test": "vitest --run --silent",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"lint": "eslint -c .eslintrc.json --ext .ts,.js ./",
"lint:fix": "eslint -c .eslintrc.json --ext .ts,.js ./ --fix",
"prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts' '**/*.json' '*.ts' ",
"format": "npm run prettier && npm run lint",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sametcelikbicak/tsci.git"
},
"keywords": [
"typescript",
"html",
"css",
"bundler",
"cli",
"tsci"
],
"author": "Samet ÇELİKBIÇAK",
"license": "MIT",
"bugs": {
"url": "https://github.com/sametcelikbicak/tsci/issues"
},
"homepage": "https://github.com/sametcelikbicak/tsci#readme",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/inquirer": "^9.0.2",
"@types/node": "^20.4.2",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"eslint": "^8.26.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"vitest": "^0.33.0"
},
"engines": {
"node": ">=14.16"
},
"files": [
"lib/**/*"
],
"dependencies": {
"chalk": "^5.1.2",
"commander": "^11.0.0",
"inquirer": "^9.1.4",
"shelljs": "^0.8.5"
}
}