-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "@uirouter/dsr",
"description": "UI-Router Deep State Redirect: redirect to the most recently activated child state",
"version": "1.2.0",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles",
"build": "npm run compile && rolldown -c rolldown.config.mjs && rolldown -c rolldown.config.mjs --environment MINIFY",
"compile": "npm run clean && tsgo && tsgo -m es6 --outDir lib-esm",
"test": "vitest run",
"test:downstream": "test_downstream_projects",
"watch": "run-p watch:*",
"watch:buildjs": "tsgo -w",
"watch:test": "vitest",
"changelog": "update_changelog",
"release": "release",
"prepublishOnly": "npm run build"
},
"homepage": "https://ui-router.github.io",
"contributors": [
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
}
],
"maintainers": [
{
"name": "UIRouter Team",
"web": "https://github.com/ui-router?tab=members"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ui-router/dsr.git"
},
"bugs": {
"url": "https://github.com/ui-router/dsr/issues"
},
"engines": {
"node": ">=18.0.0"
},
"jsnext:main": "lib-esm/index.js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"peerDependencies": {
"@uirouter/core": ">=5.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@typescript/native-preview": "^7.0.0-dev.20260101.1",
"@uirouter/core": "^6.1.0",
"@uirouter/publish-scripts": "^2.6.8",
"jsdom": "^26.1.0",
"lodash": "^4.17.21",
"prettier": "^3.4.0",
"rolldown": "^1.0.0-beta.58",
"vitest": "^3.2.4"
},
"checkPeerDependencies": {
"ignore": []
}
}