-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 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
68
69
{
"name": "create-rstack",
"version": "1.9.0",
"description": "Create a new Rstack project",
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/create-rstack"
},
"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-prettier",
"dist"
],
"scripts": {
"build": "rslib",
"dev": "rslib --watch",
"lint": "rslint",
"prepare": "simple-git-hooks && rslib",
"test": "rstest",
"bump": "npx bumpp"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"rslint && prettier --write"
]
},
"devDependencies": {
"@clack/prompts": "^1.2.0",
"@microsoft/api-extractor": "^7.58.1",
"@rslib/core": "0.20.3",
"@rslint/core": "^0.3.4",
"@rstest/core": "0.9.6",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "24.12.2",
"@vercel/detect-agent": "^1.2.1",
"deepmerge": "^4.3.1",
"fs-extra": "^11.3.4",
"minimist": "^1.2.8",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rslog": "^2.1.1",
"simple-git-hooks": "^2.13.1",
"tinyexec": "^1.0.4",
"typescript": "^6.0.2"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}