forked from solidjs-community/solid-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.98 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": "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",
"scripts": {
"format": "prettier -w packages/**/*.{js,ts,json,css,tsx,jsx,md,html}",
"lint": "eslint --max-warnings 0 packages/*/src/** && eslint packages/*/test/** --rule \"no-only-tests/no-only-tests: error\"",
"build": "cross-env CI=true turbo run build",
"test": "cross-env CI=true vitest -c ./configs/vitest.config.ts",
"test:ssr": "pnpm run test --mode ssr",
"pages": "turbo run page && jiti ./scripts/collectPages.ts",
"new-package": "jiti ./scripts/new-package.ts",
"update-readme": "jiti ./scripts/update-readme.ts",
"update-deps": "pnpm up -Lri",
"changeset": "changeset",
"version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@solidjs/testing-library": "^0.6.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-solid": "^0.9.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"fs-extra": "^11.1.0",
"jiti": "^1.17.1",
"jsdom": "^21.1.0",
"json-to-markdown-table": "^1.0.0",
"prettier": "^2.8.4",
"solid-js": "^1.6.11",
"tsup": "^6.6.3",
"tsup-preset-solid": "^0.1.8",
"turbo": "^1.7.4",
"type-fest": "^3.6.0",
"typescript": "^4.9.5",
"unocss": "^0.49.6",
"vite": "^4.1.1",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.28.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}