-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "react-style-classname-hint",
"displayName": "react-style-classname-hint",
"description": "一个编写 React 时享受到 className 智能提示的插件",
"version": "1.0.1",
"publisher": "lovely-shark",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lovely-shark/react-style-classname-hint"
},
"engines": {
"vscode": "^1.32.0"
},
"icon": "app-icon.jpg",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "esbuild ./src/extension.ts --bundle --platform=node --external:vscode --external:fsevents --outfile=./out/extension.js",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"fix": "prettier --write .",
"test": "jest",
"vsce:build": "vsce package --no-yarn"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^26.0.24",
"@types/less": "^3.0.3",
"@types/node": "^12.12.0",
"@types/sass": "^1.16.1",
"@types/stylus": "^0.48.36",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"esbuild": "^0.12.25",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.3.0",
"git-cz": "^4.7.6",
"jest": "^27.0.6",
"less": "^4.1.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"rollup": "^2.54.0",
"sass": "^1.36.0",
"source-map": "^0.7.3",
"stylus": "^0.54.8",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"husky": "^7.0.1",
"npm": "^7.20.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}