-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 865 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 865 Bytes
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
{
"name": "@cycraft/run-ts",
"description": "🏃🏼 A package that allows to run node scripts written in TypeScript directly.",
"version": "0.0.7",
"type": "module",
"sideEffects": false,
"files": [
"src"
],
"module": "./src/index.mjs",
"exports": {
"import": {
"default": "./src/index.mjs"
}
},
"scripts": {
"test": "echo none",
"lint": "eslint",
"release": "npm run lint && np"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"esbuild": "^0.25.0"
},
"devDependencies": {
"@cycraft/eslint": "^0.4.3",
"globals": "^15.15.0",
"np": "^10.2.0"
},
"license": "MIT",
"funding": "https://github.com/sponsors/mesqueeb",
"homepage": "https://github.com/CyCraft/run-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CyCraft/run-ts.git"
}
}