-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "@thiagodiogo/psjava",
"version": "0.2.0",
"description": "Run .psjava files as scripts — plain Java, no ceremony, on top of JShell.",
"keywords": [
"psjava",
"java",
"jshell",
"cli",
"script"
],
"homepage": "https://github.com/eipastel/psjava",
"repository": {
"type": "git",
"url": "git+https://github.com/eipastel/psjava.git"
},
"bugs": {
"url": "https://github.com/eipastel/psjava/issues"
},
"license": "MIT",
"author": "thiagodiogo",
"type": "module",
"bin": {
"psjava": "bin/psjava.js"
},
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.3"
},
"devDependencies": {
"@types/node": "24.13.2",
"typescript": "5.9.3",
"vitest": "3.2.6"
}
}