-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "@llamafolio/labels",
"version": "0.1.3",
"description": "List of labels used by LlamaFolio.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"format": "prettier --ignore-path .gitignore '**/*.{md,json,js,ts}' --write",
"postinstall": "npm run update-twitter-labels",
"prepublishOnly": "npm run build",
"start": "npm run build && node build/index.js",
"update-twitter-labels": "curl -o twitter-labels.json https://raw.githubusercontent.com/ultrasoundmoney/ens_twitter_accounts/main/ens_twitter.json",
"store-labels": "ts-node -T scripts/store-labels.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llamafolio/llamafolio-labels.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/llamafolio/llamafolio-labels/issues"
},
"homepage": "https://github.com/llamafolio/llamafolio-labels#readme",
"devDependencies": {
"@types/pg": "^8.6.6",
"@types/pg-format": "^1.0.2",
"@types/webpack-env": "^1.18.0",
"dotenv": "^16.0.3",
"pg": "^8.9.0",
"pg-format": "^1.0.4",
"prettier": "^2.7.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}