-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
54
55
56
57
58
59
60
{
"name": "esbuild-plugin-execute",
"version": "0.3.2",
"description": "A tool to create esbuild plugins with a bunch of binaries 🙂",
"keywords": [
"esbuild",
"esbuild-plugin",
"go",
"node",
"binary",
"execute"
],
"homepage": "https://github.com/qiweiii/esbuild-plugin-execute#readme",
"bugs": {
"url": "https://github.com/qiweiii/esbuild-plugin-execute/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiweiii/esbuild-plugin-execute.git"
},
"license": "MIT",
"author": "qiwei",
"exports": {
"import": "./build/esm.mjs",
"require": "./build/cjs.js"
},
"main": "build/cjs.js",
"module": "build/esm.mjs",
"types": "build/index.d.ts",
"files": [
"build/*",
"package.json"
],
"scripts": {
"build": "NODE_ENV=production ts-node ./scripts/build.ts",
"build:types": "NODE_ENV=production tsc --emitDeclarationOnly --declaration --outDir build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "husky install",
"types": "tsc --noEmit",
"release": "np --no-2fa --no-tests"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/node": "^16.11.13",
"esbuild": "^0.14.5",
"husky": "^7.0.0",
"prettier": "^2.5.1",
"svelte": "^3.44.3",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"esbuild": "^0.14.0"
}
}