-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.94 KB
/
package.json
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
{
"name": "rw-shad",
"version": "2.4.1",
"description": "Add shadcn components to a RedwoodJS project",
"repository": {
"type": "git",
"url": "git+https://github.com/Tobbe/rw-shad",
"directory": "packages/add"
},
"type": "module",
"main": "./dist/cli.js",
"bin": "./dist/cli.js",
"scripts": {
"start": "tsx src/cli",
"build": "rm -fr ./dist && pkgroll",
"cleannpx": "rm -fr ./npx && mkdir -p ./npx/dist",
"copypkgfiles": "yarn cleannpx && cp README.md ./npx/ && cp package.json ./npx/",
"copybin": "cp ./dist/*.js ./npx/dist",
"copyforrelease": "yarn copypkgfiles && yarn copybin",
"version:patch": "yarn version patch && yarn tsx tag.ts",
"version:minor": "yarn version minor && yarn tsx tag.ts",
"version:major": "yarn version major && yarn tsx tag.ts",
"release:patch": "yarn build && yarn version:patch && yarn copyforrelease && cd npx && npm publish && git push --follow-tags",
"release:minor": "yarn build && yarn version:minor && yarn copyforrelease && cd npx && npm publish && git push --follow-tags",
"release:major": "yarn build && yarn version:major && yarn copyforrelease && cd npx && npm publish && git push --follow-tags"
},
"keywords": [
"redwood",
"redwoodjs",
"tailwind",
"tailwindcss",
"radix",
"shadcn"
],
"author": "Tobbe Lundberg",
"license": "MIT",
"devDependencies": {
"@types/findup-sync": "4.0.2",
"@types/node": "20.14.8",
"@types/pascalcase": "1.0.1",
"@types/yargs": "17.0.33",
"pkgroll": "1.9.0",
"prettier": "3.3.2",
"tsx": "4.15.7",
"typescript": "5.5.2"
},
"dependencies": {
"@listr2/prompt-adapter-enquirer": "https://verdaccio.tobbe.dev/@listr2/prompt-adapter-enquirer/-/prompt-adapter-enquirer-2.0.17.tgz",
"@redwoodjs/cli-helpers": "5.4.3",
"enquirer": "2.4.1",
"execa": "5.1.1",
"findup-sync": "5.0.0",
"listr2": "8.2.4",
"pascalcase": "1.0.0",
"yargs": "17.7.2"
}
}