-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "sort-compiler-options",
"version": "0.2.0",
"description": "Sort compilerOptions",
"keywords": [
"typescript",
"tsconfig",
"tsc",
"compilerOptions",
"sort",
"order"
],
"homepage": "https://github.com/p-chan/sort-compiler-options#readme",
"bugs": {
"url": "https://github.com/p-chan/sort-compiler-options/issues"
},
"license": "MIT",
"author": "P-Chan",
"main": "./dist",
"bin": {
"sco": "./dist/index.js",
"sort-co": "./dist/index.js",
"sort-compiler-options": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/p-chan/sort-compiler-options.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"dev": "ts-node ./src/index.ts",
"format": "prettier --write .",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "vitest",
"version:major": "standard-version -r major",
"version:minor": "standard-version -r minor",
"version:patch": "standard-version -r patch"
},
"dependencies": {
"cac": "6.7.12",
"consola": "2.15.3",
"prettier": "2.5.1"
},
"devDependencies": {
"@stardust-configs/prettier-config": "0.1.1",
"@stardust-configs/tsconfig": "0.2.0",
"@types/node": "17.0.14",
"@types/prettier": "2.4.3",
"rimraf": "3.0.2",
"standard-version": "9.3.2",
"ts-node": "10.4.0",
"type-fest": "2.11.1",
"typescript": "4.5.5",
"vitest": "0.3.2"
}
}