-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 933 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 933 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
40
41
{
"name": "@intentjs/ts-node",
"version": "0.0.3",
"description": "A custom ts-node flavour for IntentJS.",
"type": "module",
"keywords": [
"intentjs",
"ts-node"
],
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"exports": {
"./esm": "./dist/esm.js"
},
"repository": {
"type": "git",
"url": "https://github.com/intentjs/intent.git"
},
"author": "Vinayak Sarawagi",
"license": "MIT",
"bugs": {
"url": "https://github.com/intentjs/intent/issues"
},
"homepage": "https://github.com/intentjs/intent#readme",
"dependencies": {
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/node": "^22.15.21"
}
}