-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "@uirouter/sticky-states",
"description": "UI-Router Sticky States: Keep states and their components alive while a different state is activated",
"version": "1.5.1",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles",
"build": "npm run clean && tsgo && tsgo -m es6 -outDir lib-esm && npm run bundle",
"build:tsc": "npm run clean && tsc && tsc -m es6 -outDir lib-esm && npm run bundle",
"bundle": "rolldown -c rolldown.config.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:downstream": "npm run build && test_downstream_projects",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"watch": "run-p watch:*",
"watch:buildjs": "tsc -w",
"watch:test": "vitest",
"prepublishOnly": "npm run build",
"release": "release"
},
"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/sticky-states.git"
},
"bugs": {
"url": "https://github.com/ui-router/sticky-states/issues"
},
"engines": {
"node": ">=4.0.0"
},
"main": "lib/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"peerDependencies": {
"@uirouter/core": ">=5.0.1"
},
"devDependencies": {
"@types/lodash": "4.17.21",
"@typescript/native-preview": "^7.0.0-dev.20260103.1",
"@uirouter/core": "^6.1.2",
"@uirouter/publish-scripts": "^2.7.0",
"husky": "^9.1.7",
"lodash": "^4.17.21",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"rolldown": "^1.0.0-beta.58",
"shx": "^0.4.0",
"typescript": "^5.9.3",
"eslint": "^9.19.0",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}