-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 2.19 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
{
"name": "idea-run-typescript",
"version": "2024.08.16-1",
"private": true,
"description": "[![jetbrains.svg](jetbrains.svg)](https://www.jetbrains.com/?from=novel-segment)",
"keywords": [],
"homepage": "https://github.com/bluelovers/idea-run-typescript#readme",
"bugs": {
"url": "https://github.com/bluelovers/idea-run-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluelovers/idea-run-typescript.git"
},
"license": "ISC",
"author": "bluelovers",
"main": "index.js",
"scripts": {
"pretest": "echo pretest",
"test": "echo test",
"test:ide": "dotenv -- gradlew runIde",
"posttest": "echo posttest",
"prebuild": "yarn run plugin:sync:config",
"build": "dotenv -- gradlew buildPlugin --warning-mode all",
"postbuild": "ts-node ./scripts/copy-build-plugin.ts",
"version": "ts-node ./scripts/update-version.ts",
"prepublishOnly:update": "yarn run ncu && yarn run sort-package-json",
"postpublish": "yarn run postpublish:changelog && yarn run postpublish:git:commit && yarn run postpublish:git:tag && yarn run postpublish:git:push",
"postpublish:changelog": "ynpx --quiet @yarn-tool/changelog && git add ./CHANGELOG.md",
"postpublish:git:commit": "git commit -m \"chore(release): publish\" . & echo postpublish:git:commit",
"postpublish:git:push": "git push --follow-tags",
"postpublish:git:tag": "ynpx --quiet @yarn-tool/tag",
"ncu": "yarn-tool ncu -u",
"plugin:build": "yarn run build",
"plugin:version": "yarn run version",
"plugin:publish": "yarn run plugin:version && yarn run plugin:build && yarn run plugin:postpublish",
"plugin:postpublish": "yarn run postpublish",
"plugin:sync:config": "ts-node ./scripts/sync-plugin-config.ts",
"sort-package-json": "yarn-tool sort"
},
"dependencies": {
"debug-color2": "^1.3.2",
"dot-properties-loader": "^1.0.5",
"dotenv-cli": "^7.4.2",
"fs-extra": "^11.2.0",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@bluelovers/tsconfig": "^1.0.35",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.3.0"
},
"peerDependencies": {},
"engines": {
"idea-version": "193.4932.9",
"kotlin": "1.6.0"
}
}