-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
48
49
{
"type": "module",
"name": "@evilkiwi/compose",
"version": "1.1.0",
"description": "Vue 3 Utility Hook for cross-origin iFrame IPC",
"files": [
"build"
],
"main": "./build/index.mjs",
"types": "./build/index.d.ts",
"license": "GPL-3.0-only",
"sideEffects": false,
"author": {
"name": "Evil Kiwi Limited",
"url": "https://evil.kiwi",
"email": "[email protected]"
},
"homepage": "https://github.com/evilkiwi/compose",
"bugs": {
"url": "https://github.com/evilkiwi/compose/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilkiwi/compose.git"
},
"keywords": [
"typescript",
"docker",
"compose"
],
"scripts": {
"prepack": "pnpm run build",
"build": "cross-env NODE_ENV=production node build.mjs && tsc",
"dev": "cross-env NODE_ENV=development node build.mjs && tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore src"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.9.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.5",
"esbuild-node-externals": "^1.9.0",
"eslint": "^8.53.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}