forked from solidjs-community/solid-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.58 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
71
72
{
"name": "solid-primitives",
"private": true,
"description": "A collection of high-quality, community contributed building blocks.",
"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 -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": "cross-env CI=true turbo run build --filter='./packages/*'",
"new-package": "jiti ./scripts/new-package.ts",
"update-readme": "jiti ./scripts/update-readme.ts",
"measure": "jiti ./scripts/measure.ts",
"version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@mdx-js/mdx": "^2.3.0",
"@solidjs/testing-library": "^0.8.4",
"@types/fs-extra": "^11.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-solid": "^0.12.1",
"fs-extra": "^11.1.1",
"gzip-size": "^7.0.0",
"jiti": "^1.19.1",
"jsdom": "^22.1.0",
"json-to-markdown-table": "^1.0.0",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"solid-devtools": "^0.27.7",
"solid-js": "^1.7.11",
"solid-start": "^0.3.3",
"tsup": "^7.2.0",
"tsup-preset-solid": "^2.0.2",
"turbo": "^1.10.12",
"type-fest": "^4.1.0",
"typescript": "~5.1.6",
"vite": "^4.4.8",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.34.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.6.0"
}
}