Skip to content

Commit b01a85a

Browse files
committed
Update package.json
1 parent 6a043da commit b01a85a

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

package.json

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,45 @@
11
{
22
"private": true,
3-
"name": "♦️♦️♦️SET-YOUR-OWN-PACKAGE-NAME-HERE♦️♦️♦️",
3+
"name": "posthog-plugin-hello-world",
44
"version": "1.0.0",
5-
"description": "♦️♦️♦️SET-YOUR-OWN-DESCRIPTION-HERE♦️♦️♦️",
5+
"description": "Greet the world with every PostHog event!",
66
"keywords": [
7-
"♦️♦️♦️",
8-
"SET",
9-
"YOUR",
10-
"OWN",
11-
"KEYWORDS",
12-
"HERE",
13-
"♦️♦️♦️"
7+
"posthog",
8+
"plugin"
149
],
1510
"main": "dist/index.js",
1611
"types": "dist/index.d.ts",
17-
"repository": "github:PostHog/♦️♦️♦️SET-YOUR-OWN-REPOSITORY-NAME-HERE♦️♦️♦️",
12+
"repository": "github:PostHog/posthog-plugin-hello-world",
1813
"bugs": {
19-
"url": "https://github.com/PostHog/♦️♦️♦️SET-YOUR-OWN-REPOSITORY-NAME-HERE♦️♦️♦️/issues"
14+
"url": "https://github.com/PostHog/posthog-plugin-hello-world/issues"
2015
},
21-
"homepage": "https://github.com/PostHog/♦️♦️♦️SET-YOUR-OWN-REPOSITORY-NAME-HERE♦️♦️♦️#readme",
16+
"homepage": "https://github.com/PostHog/posthog-plugin-hello-world#readme",
2217
"author": "PostHog <[email protected]>",
2318
"license": "MIT",
19+
"configSchema": {
20+
"greeting": {
21+
"name": "What greeting would you like to use?",
22+
"type": "string",
23+
"default": "Hello world!",
24+
"required": false
25+
}
26+
},
2427
"scripts": {
2528
"test": "jest src",
26-
"build": "yarn clean && yarn compile",
29+
"build": "npm run clean && npm run compile",
2730
"clean": "rimraf dist/*",
2831
"purge": "rimraf dist node_modules",
2932
"compile": "tsc",
3033
"lint": "eslint .",
3134
"lint:fix": "eslint --fix .",
3235
"format": "prettier --write .",
3336
"format:check": "prettier --check .",
34-
"prepublishOnly": "yarn test && yarn build"
37+
"prepublishOnly": "npm run test && npm run build"
3538
},
3639
"devDependencies": {
40+
"@posthog/plugin-scaffold": "0.2.8-alpha.2",
3741
"@types/jest": "^26.0.19",
42+
"@types/node-fetch": "^2.5.8",
3843
"@typescript-eslint/eslint-plugin": "^4.12.0",
3944
"@typescript-eslint/parser": "^4.12.0",
4045
"eslint": "^7.0.0",

0 commit comments

Comments
 (0)