-
-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.93 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
{
"name": "@tanstack/create",
"version": "0.61.0",
"description": "TanStack Application Builder Engine",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "node -e \"const fs=require('fs');const path=require('path');function copyDir(src,dest){if(!fs.existsSync(dest))fs.mkdirSync(dest,{recursive:true});for(const entry of fs.readdirSync(src,{withFileTypes:true})){const srcPath=path.join(src,entry.name);const destPath=path.join(dest,entry.name);if(entry.isDirectory())copyDir(srcPath,destPath);else fs.copyFileSync(srcPath,destPath)}}['react','solid'].forEach(fw=>{['add-ons','toolchains','hosts','examples','project'].forEach(dir=>{const src='src/frameworks/'+fw+'/'+dir;const dest='dist/frameworks/'+fw+'/'+dir;if(fs.existsSync(src))copyDir(src,dest)})})\"",
"dev": "tsc --watch",
"test": "eslint ./src && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/cli.git",
"directory": "packages/create"
},
"homepage": "https://tanstack.com/router",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"tanstack",
"router",
"create-tsrouter-app"
],
"author": "Jack Herrington <jherr@pobox.com>",
"license": "MIT",
"packageManager": "pnpm@9.15.5",
"dependencies": {
"ejs": "^3.1.10",
"execa": "^9.5.2",
"ignore": "^7.0.3",
"memfs": "^4.17.0",
"parse-gitignore": "^2.0.0",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^22.13.4",
"@types/parse-gitignore": "^1.0.2",
"@vitest/coverage-v8": "3.1.1",
"eslint": "^9.20.0",
"typescript": "^5.6.3",
"vitest": "^3.0.8",
"vitest-fetch-mock": "^0.4.5"
}
}