-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
82
{
"name": "@gravity-ui/gulp-utils",
"version": "1.0.0",
"description": "Utils for gulp",
"license": "MIT",
"type": "module",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"scripts": {
"prepare": "husky",
"lint": "npm run lint:js && npm run lint:other && npm run lint:exports",
"lint:js": "eslint --report-unused-disable-directives --ext .ts,.js .",
"lint:other": "npm run prettier -- --check",
"lint:exports": "npm run build && npm pack && attw gravity-ui-gulp-utils-${npm_package_version}.tgz",
"prettier": "prettier '**/*.{md,yaml,yml,json}'",
"typecheck": "tsc --noEmit",
"build": "tshy",
"test": "echo \"No tests\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"gulpplugin",
"typescript"
],
"files": [
"dist"
],
"dependencies": {
"plugin-error": "^2.0.1",
"through2": "^4.0.2",
"to-through": "^3.0.0",
"vinyl": "^3.0.0",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"peerDependencies": {
"typescript": ">=5"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@gravity-ui/eslint-config": "^3.3.0",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/through2": "^2.0.41",
"@types/vinyl": "^2.0.12",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"prettier": "^3.4.2",
"tshy": "^3.0.2",
"typescript": "^5.7.3"
},
"nano-staged": {
"*.{js,ts}": [
"eslint --fix --quiet --report-unused-disable-directives"
],
"*.{md,yaml,yml,json}": [
"prettier --write"
]
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
}
}