-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "draft-ui-monorepo",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.0.0",
"description": "A shadcn-like component library for Vue and React",
"author": "Ted Lin <preflower.lin@gmail.com> (https://github.com/preflower)",
"license": "MIT",
"homepage": "https://preflower.github.io/draft-ui/",
"repository": {
"type": "git",
"url": "git+https://github.com/preflower/draft-ui.git"
},
"bugs": {
"url": "https://github.com/preflower/draft-ui/issues"
},
"keywords": [
"ui-kit",
"vue",
"react",
"monorepo",
"shadcn"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "pnpm --filter @draft-ui/docs dev",
"build:docs": "pnpm --filter @draft-ui/docs build",
"build": "pnpm --filter draft-cli build",
"preview": "pnpm --filter @draft-ui/docs preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "pnpm -r exec tsc --noEmit",
"changeset": "changeset",
"ci:version": "pnpm changeset version && pnpm install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish",
"gen:registry": "npx tsx scripts/update-registry.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^7.0.0",
"@changesets/cli": "^2.29.8",
"@eslint-react/eslint-plugin": "^2.6.0",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"typescript": "^5.0.0"
}
}