-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
61
62
63
64
65
{
"name": "@urpflanze/[name]",
"version": "0.0.1",
"description": "Urpflanze package",
"license": "GPL-3.0-or-later",
"docs": "",
"keywords": [
"urpflanze",
"typescript"
],
"author": "",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/urpflanze-org/[name].git"
},
"bugs": {
"url": "https://github.com/urpflanze-org/[name]/issues",
"email": "[email protected]"
},
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/urpflanze"
},
{
"type": "bitcoin",
"url": "https://explorer.btc.com/btc/address/1CSQq4aMmsA71twvyZHZCjmeB2AmQGCPNq"
},
{
"type": "ethereum",
"url": "https://etherscan.io/address/0x9086c4bb7015c1d6dc79162d02e7e1239c982c01"
}
],
"main": "dist",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"generate-docs": "npx generate-docs",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"publishConfig": {},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@urpflanze/typedoc-docs": "^0.1.13",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"typescript": "4.2",
"standard-version": "^9.3.1"
},
"googleAnalyticsID": ""
}