-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "create-206-app",
"version": "0.4.6",
"keywords": [
"react",
"next",
"next.js"
],
"description": "Create Studio 206 apps with one command",
"repository": {
"type": "git",
"url": "https://github.com/studio-206/create-206"
},
"author": "Studio 206 Team <hello@studio206.dev>",
"license": "MIT",
"bin": {
"create-206-app": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "ncc build ./index.ts -w -o dist/",
"test-script": "npm run remove-my-app && ts-node index.ts",
"remove-my-app": "rm -rf my-app",
"prerelease": "rm -rf dist",
"release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"prepublishOnly": "pnpm build",
"build": "pnpm release",
"lint-fix": "pnpm prettier -w --plugin prettier-plugin-tailwindcss 'templates/*-tw/{ts,js}/{app,pages}/**/*.{js,ts,tsx}'"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/ci-info": "2.0.0",
"@types/cross-spawn": "6.0.0",
"@types/fs-extra": "^11.0.4",
"@types/glob": "7.1.1",
"@types/node": "^20.12.11",
"@types/prompts": "2.0.1",
"@types/tar": "6.1.5",
"@types/validate-npm-package-name": "3.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "0.34.0",
"async-retry": "1.3.3",
"async-sema": "^3.1.1",
"chalk": "2.4.2",
"ci-info": "github:watson/ci-info#f43f6a1cefff47fb361c88cf4b943fdbcaafe540",
"commander": "2.20.0",
"conf": "10.2.0",
"cpy": "7.3.0",
"cross-spawn": "6.0.5",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"glob": "8.0.3",
"got": "10.7.0",
"prettier-plugin-tailwindcss": "0.3.0",
"prompts": "2.1.0",
"tar": "6.1.15",
"typescript": "^5.4.5",
"update-check": "1.5.4",
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">=16.8.0"
}
}