-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "create-ts-node",
"version": "1.7.1",
"description": "Create a new Node.js project that uses Typescript, ESLint and Prettier",
"author": "Santeri Hiltunen <[email protected]> (https://hilzu.moe/)",
"license": "Unlicense",
"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": "^20.9.0 || >=22.5.1"
},
"scripts": {
"format": "prettier --write .",
"test": "concurrently --group 'npm:test:*(!node)' && npm run test:node",
"test:format": "prettier --check .",
"test:lint": "eslint .",
"test:node": "node --test --test-reporter spec src/test.mjs",
"update-template-deps": "(cd template && npx npm-check-updates@latest --upgrade)"
},
"dependencies": {
"chalk": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"concurrently": "^9.0.1",
"eslint": "^9.10.0",
"eslint-plugin-n": "^17.10.3",
"globals": "^15.9.0",
"prettier": "3.3.3"
}
}