-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 902 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
{
"name": "@hyrious/esbuild-plugin-style",
"version": "0.3.5",
"description": "The missing style loader for esbuild.",
"repository": "hyrious/esbuild-plugin-style",
"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=node12 index.ts",
"test": "npm run build && cd test && node build.js"
},
"keywords": [
"esbuild",
"plugin",
"style",
"css"
],
"author": "hyrious <[email protected]>",
"license": "MIT",
"peerDependencies": {
"esbuild": "*"
},
"peerDependenciesMeta": {
"esbuild": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^17.0.21",
"esbuild": "^0.14.27",
"sanitize.css": "^13.0.0"
}
}