-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "kurier-addon-starter",
"version": "0.0.1",
"description": "Starter repo for creating addons.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc -b",
"prepublishOnly": "rm -rf dist/ && tsc -b",
"prepare": "install-peers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurierjs/kurier-addon-starter.git"
},
"keywords": [
"kurier",
"kurierjs",
"addon"
],
"author": "Joel A. Villarreal Bertoldi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kurierjs/kurier-addon-starter/issues"
},
"homepage": "https://github.com/kurierjs/kurier-addon-starter#readme",
"peerDependencies": {
"kurier": "^1.3.0-beta2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"install-peers-cli": "^2.2.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}