forked from solidjs-use/solidjs-use
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.05 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@solidjs-use/monorepo",
"version": "2.1.0",
"vueuse-git-commit-id": "31b66263163b0c39015f000b91a221e19602b171",
"private": true,
"packageManager": "pnpm@8.3.1",
"description": "Collection of SolidJS utilities inspired completely by VueUse",
"author": "dream2023 <https://github.com/dream2023>",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-use/solidjs-use.git"
},
"homepage": "https://solidjs-use.github.io/solidjs-use",
"license": "MIT",
"scripts": {
"dev": "npm run build && npm run update && npm run docs",
"docs": "cd packages/docs && npm run dev",
"docs:build": "npm run build && cd packages/docs && npm run build && cd ../../ && tsx scripts/gen-html.ts",
"docs:serve": "cd packages/docs && npm run serve",
"build": "tsx scripts/gen-metadata.ts && tsx scripts/build.ts && npm run build:types",
"build:types": "cross-env NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c && tsx scripts/move-types.ts",
"test": "cypress open --component",
"test:ci": "cypress run --component --quiet --headed",
"test:cov": "cypress --coverage",
"type-check": "tsc --noEmit",
"ci": "npm run type-check && npm run lint && npm run test:ci",
"size": "tsx scripts/export-size.ts",
"update": "tsx scripts/update.ts && npm run size",
"publish:ci": "npm run build && tsx scripts/publish.ts",
"release": "bumpp --execute=\"npm run release:prepare\" --all",
"release:prepare": "npm run build && npm run update",
"preinstall": "npx only-allow pnpm",
"init-git-hooks": "simple-git-hooks",
"format": "prettier --check --cache .",
"format-fix": "prettier --write --cache .",
"lint": "eslint --cache .",
"lint-fix": "eslint --cache --fix ."
},
"devDependencies": {
"@dream2023/cypress-ct-solid-js": "^1.0.0",
"@giveerr/eslint-config": "^2.2.3",
"@giveerr/eslint-config-prettier-javascript": "^2.2.3",
"@giveerr/eslint-config-prettier-solid": "^2.2.3",
"@giveerr/eslint-config-prettier-typescript": "^2.2.3",
"@giveerr/prettier-config": "^2.2.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.13.0",
"@types/web-bluetooth": "^0.0.16",
"axios": "^1.3.3",
"bumpp": "^8.2.1",
"change-case": "^4.1.2",
"consola": "^3.1.0",
"cross-env": "^7.0.3",
"cypress": "12.11.0",
"esbuild-register": "^3.4.2",
"eslint-plugin-cypress": "^2.13.3",
"export-size": "^0.5.2",
"fast-glob": "^3.2.12",
"filesize": "^10.0.7",
"fs-extra": "^11.1.0",
"fuse.js": "^6.6.2",
"gray-matter": "^4.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rollup": "^3.21.3",
"rollup-plugin-dts": "^5.3.0",
"simple-git": "^3.16.1",
"simple-git-hooks": "^2.8.1",
"solid-icons": "^1.0.4",
"solid-js": "^1.7.5",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"unocss": "^0.48.2",
"vite": "^4.3.4",
"vite-plugin-solid": "^2.7.0"
},
"prettier": "@giveerr/prettier-config",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}