forked from solidjs-community/solid-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.68 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
64
65
66
67
68
69
70
{
"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 <dave.dibiase@gmail.com>",
"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 --ignore-path .gitignore --max-warnings 0 packages/*/src/**/*",
"lint:tests": "eslint --ignore-path .gitignore packages/*/test/** --quiet --rule \"no-only-tests/no-only-tests: error\"",
"lint": "concurrently pnpm:lint:*",
"test:client": "cross-env CI=true 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.1",
"@solidjs/testing-library": "^0.8.5",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"fs-extra": "^11.2.0",
"gzip-size": "^7.0.0",
"jsdom": "^22.1.0",
"json-to-markdown-table": "^1.0.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"solid-devtools": "^0.29.3",
"solid-js": "^1.8.16",
"@solidjs/start": "^0.7.7",
"tsup": "^8.0.2",
"tsup-preset-solid": "^2.2.0",
"tsx": "^4.7.0",
"turbo": "^1.12.5",
"vinxi": "^0.3.10",
"vite-plugin-solid": "^2.10.2",
"typescript": "~5.2.2",
"valibot": "^0.20.1",
"vite": "5.2.2",
"vitest": "^0.34.6"
},
"packageManager": "pnpm@8.15.6+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f",
"engines": {"node": ">=18.0.0"}
}