forked from Akryum/release-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.21 KB
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
{
"name": "release-tag",
"version": "4.2.4",
"description": "Create a release on tag push.",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@actions/core": "^2.0.2",
"@actions/github": "^7.0.0",
"changelogen": "^0.6.2"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@liquid-js/rollup-plugin-closure-compiler": "^0.28.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/node": "<25.0.0",
"commit-and-tag-version": "^12.6.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-unused-imports": "^4.3.0",
"google-closure-compiler": "^20260114.0.0",
"husky": "^9.1.7",
"npm-check-updates": "^19.3.1",
"rimraf": "^6.1.2",
"rollup": "^4.55.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"scripts": {
"build": "rimraf lib && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "yarn build && git diff --exit-code && commit-and-tag-version && git push --follow-tags origin",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-JS/fragql.git"
},
"author": "HitkoDev <development@hitko.si>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Liquid-JS/fragql/issues"
},
"packageManager": "yarn@4.12.0",
"clean-package": {
"remove": [
"packageManager",
"scripts",
"devDependencies",
"clean-package"
]
}
}