-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.8 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@septh/ts-run",
"version": "2.0.0",
"description": "The minimalist TypeScript script runner for Node",
"keywords": [
"node",
"runtime",
"typescript",
"script",
"runner",
"commonjs",
"module",
"cjs",
"esm"
],
"author": "Stephan 'Septh' Schreiber <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Septh/ts-run#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Septh/ts-run.git"
},
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/Septh"
},
{
"type": "paypal",
"url": "https://paypal.me/septh07"
}
],
"engines": {
"node": ">=21 || ^20.6.0 || ^18.19.0"
},
"type": "module",
"bin": {
"ts-run": "./bin/index.js"
},
"exports": {
"types": "./lib/register.d.ts",
"default": "./lib/register.js"
},
"imports": {
"#package.json": "./package.json"
},
"scripts": {
"prebuild": "rimraf bin lib",
"build": "rollup --config",
"watch": "npm run build -- --watch",
"pretest": "npm run build",
"test": "npm run testOnly",
"testOnly": "node test/check-node-21.js && node --import=./lib/register.js --test test/**/*.test.{ts,mts,cts}",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.7.2",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-fast-typescript": "^2.1.1",
"rollup-plugin-node-externals": "^7.1.2",
"sucrase": "^3.35.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2"
},
"files": [
"./bin",
"./lib",
"!*.map"
],
"publishConfig": {
"access": "public"
}
}