-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "@art-test/learn-git-action",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Artsmp/github-action-learn"
},
"bugs": {
"url": "https://github.com/Artsmp/github-action-learn/issues"
},
"homepage": "https://github.com/Artsmp/github-action-learn",
"packageManager": "pnpm@7.29.1",
"version": "1.1.0",
"description": "",
"scripts": {
"prepare": "husky install",
"dev": "tsc -w",
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.js --fix --ignore-path .gitignore",
"test": "vitest",
"changeset": "changeset",
"version": "changeset version && pnpm install"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"semantic-release": "^20.1.1",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
}
}