-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "ts-css-modules-vite-plugin",
"version": "1.0.20",
"description": "Read the definition of'vite.config.ts' and resolve the CSS Modules type.",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"local:publish": "npm run build && npm link",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"prepare": "husky install",
"prettier": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/activeguild/ts-css-modules-vite-plugin.git"
},
"keywords": [
"vite",
"typescript-plugin",
"plugin",
"css",
"scss",
"typescript",
"cssmodules"
],
"author": "j1ngzoue",
"license": "MIT",
"bugs": {
"url": "https://github.com/activeguild/ts-css-modules-vite-plugin/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/activeguild/ts-css-modules-vite-plugin#readme",
"devDependencies": {
"@types/node": "^20.3.2",
"@types/sass": "^1.43.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"esbuild-register": "^3.4.2",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"typescript": "^5.1.6",
"vite": "^4.3.9"
},
"dependencies": {
"postcss-js": "^4.0.1",
"sass": "^1.63.6",
"ts-node": "^10.9.1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint . --fix",
"prettier . --write"
]
}
}