forked from hyrious/esbuild-plugin-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 996 Bytes
/
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
{
"name": "esbuild-inline-sass",
"version": "0.4.4",
"description": "The missing inline SASS/SCSS loader for esbuild.",
"repository": "ProdigyPXP/esbuild-inline-sass",
"main": "index.js",
"types": "index.ts",
"files": [
"index.ts",
"index.js",
"index.js.map"
],
"scripts": {
"build": "esbuild --bundle --external:esbuild --platform=node --outfile=index.js --minify --sourcemap --sources-content=false --target=node16 index.ts",
"test": "pnpm build && cd test && node build.js"
},
"keywords": [
"esbuild",
"plugin",
"style",
"css"
],
"author": {
"name": "ProdigyPXP",
"email": "[email protected]"
},
"peerDependencies": {
"esbuild": "*"
},
"license": "MIT",
"peerDependenciesMeta": {
"esbuild": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.11.19",
"esbuild": "^0.20.0",
"sanitize.css": "^13.0.0"
},
"dependencies": {
"esbuild-sass-plugin": "2.16.1"
}
}