-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.54 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "vscode-auto-colorize",
"displayName": "Auto Colorize",
"description": "Automatically color your workspace",
"version": "0.0.16",
"license": "MIT",
"publisher": "bisquit",
"icon": "assets/icon.png",
"engines": {
"vscode": "^1.80.0"
},
"categories": [],
"keywords": [
"workspace",
"color"
],
"main": "./dist/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "auto-colorize.recolor",
"title": "Recolor",
"category": "Auto Colorize"
}
]
},
"scripts": {
"dev": "pnpm esbuild:watch",
"build": "pnpm run esbuild-base --minify",
"esbuild-base": "rimraf dist && esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "pnpm run esbuild-base --sourcemap",
"esbuild:watch": "pnpm run esbuild-base --sourcemap --watch",
"lint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit && echo 'Type checking passed!'",
"validate": "pnpm run lint && pnpm run typecheck",
"test": "vitest",
"test:coverage": "vitest --coverage.enabled --coverage.provider=v8 --coverage.all --coverage.clean --coverage.include=src/utils",
"test:ci": "pnpm run test:coverage --run",
"e2e": "pnpm --filter e2e wdio",
"vsce:package": "pnpm vsce package --no-dependencies",
"vsce:publish": "pnpm vsce publish --no-dependencies"
},
"devDependencies": {
"@types/color-hash": "^1.0.5",
"@types/node": "^18.19.64",
"@types/tinycolor2": "^1.4.6",
"@types/vscode": "1.80.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^0.34.6",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-perfectionist": "^1.5.1",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"typescript": "^5.6.3",
"vitest": "^0.34.6"
},
"dependencies": {
"color-hash": "^2.0.2",
"tinycolor2": "^1.6.0"
},
"prettier": {
"editorconfig": true,
"singleQuote": true
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:perfectionist/recommended-natural"
],
"rules": {
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-non-null-assertion": 0
}
},
"config": {
"commitizen": {
"types": [
{
"value": "feat",
"name": "feat: New feature"
},
{
"value": "fix",
"name": "fix: Bug fix"
},
{
"value": "improve",
"name": "improve: Improves feature or performance"
},
{
"value": "docs",
"name": "docs: Documentation only changes"
},
{
"value": "refactor",
"name": "refactor: Code refactoring"
},
{
"value": "chore",
"name": "chore: Other changes that don't modify src or test files"
}
],
"skipQuestions": [
"scope",
"body",
"footerPrefix",
"footer"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/bisquit/vscode-auto-colorize.git"
},
"bugs": {
"url": "https://github.com/bisquit/vscode-auto-colorize/issues"
}
}