-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.91 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.91 KB
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
{
"name": "react-space-router",
"description": "Space router bindings for React.",
"version": "0.6.6",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"license": "ICS",
"repository": {
"type": "git",
"url": "git://github.com/humaans/react-space-router.git"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"react",
"browser",
"clientside",
"router",
"history",
"location",
"url"
],
"author": "Karolis Narkevicius",
"scripts": {
"test": "npm run build && oxlint --ignore-pattern examples --ignore-pattern dist --ignore-pattern docs && oxfmt --check --ignore-path=.gitignore --ignore-path=.oxfmtignore '**/*.{ts,tsx,js,css,yml}' && c8 ava",
"format": "oxfmt --ignore-path=.gitignore --ignore-path=.oxfmtignore '**/*.{ts,tsx,js,css,yml}'",
"coverage": "c8 --reporter=html ava",
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"release": "np --no-release-draft",
"release:beta": "np --tag=beta --no-release-draft",
"release:docs": "hugo -s docs && gh-pages -d docs/public"
},
"dependencies": {
"space-router": "^1.0.0"
},
"devDependencies": {
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.30",
"@types/react": "^19.0.0",
"ava": "^7.0.0",
"c8": "^11.0.0",
"gh-pages": "^6.3.0",
"jsdom": "^29.0.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^5.9.0"
},
"peerDependencies": {
"react": ">=18"
},
"ava": {
"files": [
"test/*.test.*"
],
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--import=@swc-node/register/esm-register"
]
}
}