-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 907 Bytes
/
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
{
"name": "@tungstools/tesuto",
"version": "0.0.7",
"devDependencies": {
"@types/node": "20.12.7",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/tungstools/tesuto"
},
"files": [
"dist/tesuto.js",
"dist/tesuto.d.ts"
],
"bin": {
"tesuto": "dist/tesuto.js"
},
"type": "module",
"types": "dist/tesuto.d.ts",
"tsup": {
"dts": true,
"minify": false,
"target": "node20",
"format": [
"esm"
],
"entry": {
"tesuto": "entry.ts"
},
"clean": true
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"example": "node --experimental-vm-modules dist/tesuto.js --root=\"example_project\" --verbose --clear-cache"
},
"dependencies": {
"esbuild": "^0.20.2",
"source-map": "^0.8.0-beta.0"
},
"engines": {
"node": ">= 22"
}
}