-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "create-ts-node",
"version": "3.0.0",
"description": "Create a new Node.js project with TypeScript and ESM",
"author": "Santeri Hiltunen <github@me.hilzu.moe> (https://hilzu.moe/)",
"license": "0BSD",
"keywords": [
"create",
"init",
"typescript",
"node",
"template",
"starter",
"project",
"boilerplate",
"esm"
],
"homepage": "https://github.com/Hilzu/create-ts-node#create-ts-node",
"bugs": "https://github.com/Hilzu/create-ts-node/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Hilzu/create-ts-node.git"
},
"type": "module",
"bin": {
"create-ts-node": "src/bin.mjs"
},
"main": "src/main.mjs",
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"format": "prettier --write .",
"test": "concurrently --group node:test:* && node --run test-node",
"test-node": "node --test --test-reporter spec src/test.mjs",
"test:format": "prettier --check .",
"test:lint": "eslint .",
"update-template-deps": "(cd template && npx npm-check-updates@latest --upgrade)"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-plugin-n": "^17.23.1",
"globals": "^16.5.0",
"prettier": "3.6.2"
}
}