-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "esbuild-style-plugin",
"version": "1.6.3",
"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.38",
"glob": "^10.2.2",
"postcss": "^8.4.31",
"postcss-modules": "^6.0.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/postcss-preset-env": "^7.7.0",
"autoprefixer": "^10.4.14",
"esbuild": "^0.17.18",
"jest": "^29.5.0",
"less": "^4.2.0",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.3.2",
"postcss-scss": "^4.0.6",
"sass": "^1.69.5",
"stylus": "^0.59.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
}
}