-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpackage.json
63 lines (63 loc) · 2.32 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
58
59
60
61
62
63
{
"name": "solid-primitives",
"private": true,
"description": "A collection of high-quality, community contributed building blocks.",
"homepage": "https://primitives.solidjs.community/",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-primitives.git"
},
"author": "David Di Biase <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "pnpm -dir site run dev",
"format": "prettier --cache -w {site,packages,scripts,template}/**/*.{js,ts,json,css,tsx,jsx,md,html} --ignore-path .gitignore",
"lint:packages": "eslint --max-warnings 0 \"packages/*/src/**/*\"",
"lint:tests": "eslint \"packages/*/test/**\" --rule \"no-only-tests/no-only-tests: error\"",
"lint": "pnpm run \"/^lint:.*/\"",
"test:client": "vitest -c ./configs/vitest.config.ts",
"test:ssr": "pnpm run test:client --mode ssr",
"test": "pnpm run test:client && pnpm run test:ssr",
"build:ci": "turbo run build --filter='./packages/*'",
"build": "pnpm run build:ci --concurrency=50%",
"new-package": "tsx ./scripts/new-package.ts",
"update-readme": "tsx ./scripts/update-readme.ts",
"measure": "tsx ./scripts/measure.ts",
"version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"esbuild": "^0.19.11",
"eslint": "^9.10.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"jsdom": "^25.0.0",
"json-to-markdown-table": "^1.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"solid-js": "^1.8.22",
"@solidjs/start": "^1.0.6",
"tsup": "^8.2.4",
"tsup-preset-solid": "^2.2.0",
"tsx": "^4.19.1",
"turbo": "^1.12.5",
"vinxi": "^0.4.2",
"vite-plugin-solid": "^2.10.2",
"typescript": "~5.6.2",
"valibot": "^0.20.1",
"vite": "5.4.4",
"vitest": "^2.1.0"
},
"packageManager": "[email protected]",
"engines": {"node": ">=20.0.0"}
}