-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.39 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
{
"name": "@rstackjs/create-toolkit",
"version": "2.2.7",
"description": "Create a new Rstack project",
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/create-toolkit"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"template-biome",
"template-eslint",
"template-rslint",
"template-prettier",
"dist"
],
"scripts": {
"build": "rs lib",
"check": "rs check --type-check",
"dev": "rs lib --watch",
"format": "rs fmt",
"lint": "rs lint",
"prepare": "rs hooks",
"test": "rs test",
"bump": "pnpm version -m \"release: v%s\""
},
"devDependencies": {
"@clack/prompts": "^1.8.1",
"@microsoft/api-extractor": "^7.59.1",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "24.13.4",
"@vercel/detect-agent": "^1.2.5",
"deepmerge": "^4.3.1",
"fs-extra": "^11.4.0",
"minimist": "^1.2.8",
"rimraf": "^6.1.3",
"rslog": "^2.3.0",
"rstack": "^0.7.4",
"tinyexec": "^1.3.1",
"typescript": "^7.0.2"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@12.4.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}