forked from hannoeru/esbuild-plugin-raw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "esbuild-plugin-raw",
"version": "0.1.7",
"description": "esbuild plugin for raw import",
"license": "MIT",
"author": "hannoeru <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/hannoeru/esbuild-plugin-raw"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"index.d.ts",
"client.d.ts"
],
"homepage": "https://github.com/hannoeru/esbuild-plugin-raw",
"bugs": "https://github.com/hannoeru/esbuild-plugin-raw/issues",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --push --tag --commit",
"example:serve": "npm -C example run serve",
"example:build": "npm -C example run build"
},
"peerDependencies": {
"esbuild": "^0.14.36 || ^0.15.0 || ^0.16.0"
},
"devDependencies": {
"@hannoeru/eslint-config": "^0.9.4",
"@types/node": "^18.11.18",
"esbuild": "^0.16.16",
"eslint": "^8.31.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
}
}