This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
77 lines (77 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@fig/plugins",
"version": "1.11.17",
"description": "",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"exports": {
"./util": {
"require": "./dist/cjs/util/index.js",
"import": "./dist/esm/util/index.js"
},
"./plugins/*": {
"require": "./dist/cjs/plugins/*.js",
"import": "./dist/cjs/plugins/*.js"
}
},
"typesVersions": {
"*": {
"util": [
"dist/cjs/util"
]
}
},
"scripts": {
"test": "tsc --noEmit",
"clean": "rm -rf dist",
"dev": "ts-node compile.ts --watch",
"build": "yarn clean && tsc --emitDeclarationOnly --declaration --outDir dist/esm/ && tsc --emitDeclarationOnly --declaration --outDir dist/cjs/ && ts-node compile.ts",
"update-plugins": "yarn build && ts-node util/update-plugins.ts",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint '**/*.ts' --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withfig/plugins.git"
},
"author": "Fig",
"license": "MIT",
"bugs": {
"url": "https://github.com/withfig/plugins/issues"
},
"homepage": "https://github.com/withfig/plugins",
"devDependencies": {
"@fig/eslint-config-fig": "^1.0.0",
"@types/finalhandler": "^1.2.0",
"@types/node": "^18.0.15",
"@types/serve-static": "^1.15.0",
"axios": "^1.2.0",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"dotenv": "^16.0.0",
"esbuild": "^0.16.5",
"eslint": "^8.29.0",
"eslint-plugin-prettier": "^4.2.1",
"fast-glob": "^3.2.12",
"finalhandler": "^1.2.0",
"husky": ">=8",
"lint-staged": ">=13",
"prettier": "^2.8.1",
"serve-static": "^1.15.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"typescript": "^4.6.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}