forked from withfig/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.99 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
78
79
80
81
{
"name": "@fig/plugins",
"version": "1.8.3",
"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",
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --declaration --outDir dist/cjs",
"build:esm": "tsc --declaration --module esnext --outDir dist/esm",
"preupdate-plugins": "tsc --build tsconfig.update.json",
"update-plugins": "node dist/cjs/util/update-plugins.js",
"postupdate-plugins": "npm run clean",
"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.1.1",
"@types/node": "^17.0.23",
"@types/serve-static": "^1.13.10",
"axios": "^0.26.0",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"chokidar": "^3.5.3",
"commander": "^9.1.0",
"dotenv": "^16.0.0",
"esbuild": "^0.14.29",
"eslint": "^8.12.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-glob": "^3.2.11",
"finalhandler": "^1.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"serve-static": "^1.15.0",
"ts-node": "^10.6.0"
},
"dependencies": {
"typescript": "^4.6.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}