-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "solid-react-use",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"description": "Feels like React, but it's Solid",
"keywords": [
"solid",
"react-use",
"solid-use",
"solid-start",
"hooks",
"TypeScript"
],
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean && tsc -p tsconfig.dist.json",
"build": "ts-node-esm build.ts",
"watch": "microbundle watch",
"postbuild": "cp package.dist.json .npmignore README.md LICENSE dist",
"pretest": "yarn build",
"test": "vitest run --coverage",
"test:ci": "vitest run --threads=false",
"prerelease": "yarn build",
"release": "cd dist && yarn publish",
"format:fix": "pretty-quick --verbose --pattern 'src/**/*.ts{,x}'",
"format:fix:staged": "yarn format:fix --staged",
"format:check": "pretty-quick --check --verbose --pattern 'src/**/*.ts{,x}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krymel/solid-react-use.git"
},
"author": "krymel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/krymel/solid-react-use/issues"
},
"dependencies": {
"solid-js": "*",
"solid-use": "*",
"@solidjs/router": "*",
"vitest": "*",
"solid-start-node": "*"
},
"devDependencies": {
"@solidjs/testing-library": "^0.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@types/node": "^18.11.9",
"@vitest/coverage-c8": "^0.25.2",
"esbuild": "^0.15.14",
"jsdom": "^20.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"solid-jest": "^0.2.0",
"solid-start": "^0.2.5",
"solid-start-node": "^0.2.5",
"tabular-filesize-gzip": "^2.0.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vitest": "^0.25.2"
}
}