-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "init-project-ts",
"version": "1.4.0",
"description": "Init fast project typescript",
"scripts": {
"test": "vitest && node ./test/index.js",
"build": "tsup",
"tsx": "tsx watch ./tsx.ts",
"start": "node ./dist/src/index.js",
"publish_npm": "npm run build && npm publish --access public"
},
"homepage": "https://github.com/damartripamungkas/init-project-ts",
"repository": {
"type": "git",
"url": "https://github.com/damartripamungkas/init-project-ts.git"
},
"bugs": {
"url": "https://github.com/damartripamungkas/init-project-ts/issues"
},
"keywords": [
"init-project-typescript",
"init-project-ts",
"i-p-t",
"ipt",
"typescript",
"node",
"bun",
"backend",
"frontend",
"browser"
],
"bin": "./dist/src/index.js",
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"author": "damartripamungkas",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.3.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.9.0",
"tsup": "^8.2.4",
"tsx": "^4.19.2",
"vitest": "^2.1.0"
},
"dependencies": {
"ora": "^8.0.1",
"prompts": "^2.4.2"
}
}