-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.97 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
70
71
72
73
74
75
76
77
78
{
"name": "@baseplate-dev/react-generators",
"version": "0.6.7",
"description": "React Generators for Baseplate",
"keywords": [
"baseplate",
"code-generation",
"full-stack",
"react",
"typescript",
"ui-components"
],
"homepage": "https://www.baseplate.dev",
"repository": {
"type": "git",
"url": "https://github.com/halfdomelabs/baseplate",
"directory": "packages/react-generators"
},
"license": "MPL-2.0",
"author": "Half Dome Labs LLC",
"sideEffects": false,
"type": "module",
"imports": {
"#src/*": "./dist/*"
},
"main": "dist/index.js",
"files": [
"README.md",
"LICENSE",
"CHANGELOG.md",
"dist/**/*",
"!dist/**/*.map",
"!dist/**/*.tsbuildinfo"
],
"scripts": {
"build": "concurrently pnpm:build:*",
"build:templates": "cpx \"src/generators/*/*/templates/**\" \"dist/generators\" --clean",
"build:tsc": "tsc -p tsconfig.build.json",
"clean": "rm -rf ./dist",
"lint": "oxlint && eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier -w -l .",
"test": "vitest",
"tsc:watch": "tsc -p tsconfig.build.json --preserveWatchOutput -w",
"typecheck": "tsc --noEmit",
"watch": "pnpm build:templates --watch"
},
"dependencies": {
"@baseplate-dev/core-generators": "workspace:*",
"@baseplate-dev/sync": "workspace:*",
"@baseplate-dev/utils": "workspace:*",
"es-toolkit": "1.44.0",
"inflection": "3.0.0",
"prettier-plugin-tailwindcss": "0.7.2",
"zod": "catalog:"
},
"devDependencies": {
"@baseplate-dev/tools": "workspace:*",
"@types/node": "catalog:",
"concurrently": "9.2.1",
"cpx2": "catalog:",
"eslint": "catalog:",
"oxlint": "catalog:",
"prettier": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": "^24.0.0"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}