forked from solidjs/solid-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "@solidjs/router",
"description": "Universal router for SolidJS",
"author": "Ryan Carniato",
"contributors": [
"Ryan Turnquist"
],
"license": "MIT",
"version": "0.7.0",
"homepage": "https://github.com/solidjs/solid-router#readme",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-router"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"solid": "./dist/index.jsx",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build",
"test": "jest && npm run test:types",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && npm run test:types",
"test:types": "tsc --project tsconfig.test.json",
"pretty": "prettier --write \"{src,test}/**/*.{ts,tsx}\""
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.2.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"babel-jest": "^29.0.1",
"babel-preset-solid": "^1.6.6",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.2.1",
"prettier": "^2.7.1",
"rollup": "^3.7.5",
"solid-jest": "^0.2.0",
"solid-js": "^1.6.6",
"typescript": "^4.9.4"
},
"peerDependencies": {
"solid-js": "^1.5.3"
},
"jest": {
"preset": "solid-jest/preset/browser"
}
}