forked from g45t345rt/esbuild-style-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
{
"name": "esbuild-style-plugin",
"version": "1.6.0",
"description": "Another esbuild plugin for your styling with CSS,SASS,LESS,STYLUS",
"types": "./dist/index.d.ts",
"main": "./dist/index",
"browser": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"test-watch": "ts-node ./test/watch/index.ts",
"test": "jest",
"build": "ts-node bundle.ts && tsc --emitDeclarationOnly --outDir dist",
"prepublishOnly": "npm run build"
},
"author": "g45t345rt",
"repository": {
"type": "git",
"url": "git+https://github.com/g45t345rt/esbuild-style-plugin"
},
"homepage": "https://github.com/g45t345rt/esbuild-style-plugin#readme",
"license": "ISC",
"dependencies": {
"@types/less": "^3.0.3",
"@types/sass": "^1.43.1",
"@types/stylus": "^0.48.37",
"glob": "^8.0.1",
"postcss": "^8.4.12",
"postcss-modules": "^4.3.1"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/postcss-preset-env": "^6.7.3",
"antd": "^4.20.0",
"autoprefixer": "^10.4.5",
"esbuild": "^0.14.38",
"jest": "^27.5.1",
"less": "^4.1.2",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.5.0",
"postcss-scss": "^4.0.4",
"postcss-strip-inline-comments": "^0.1.5",
"sass": "^1.50.1",
"stylus": "^0.57.0",
"tailwindcss": "^3.0.24",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
}
}