-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "create-st-stack",
"version": "1.0.2",
"main": "dist/index.js",
"bin": {
"create-st-stack": "dist/index.js"
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsc -w",
"devTest": "vitest",
"test": "vitest run",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build ",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish"
},
"keywords": [],
"contributors": [
{
"name": "Nkurunziza octave",
"email": "nkurunzizaheuruex@gmail.com"
},
{
"name": "Rumanzi Bonheur",
"email": "rumanzibonheur@gmail.com"
}
],
"license": "MIT",
"description": "Starter for your typescript application",
"devDependencies": {
"typescript": "^5.6.2"
},
"dependencies": {
"@changesets/cli": "^2.27.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.5.4",
"commander": "^12.1.0",
"inquirer": "9.3.0",
"tsup": "^8.2.4",
"vitest": "^2.1.0"
}
}