-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.46 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.46 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
{
"name": "@asl-19/use-overflow-state",
"version": "1.0.0",
"description": "Hook that returns the overflow state of the provided scrollable element",
"type": "module",
"contributors": [
{
"name": "Grant Heaslip",
"email": "grant@asl19.org",
"url": "https://asl19.org/"
},
{
"name": "Min Van",
"email": "min@asl19.org",
"url": "https://asl19.org/"
}
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/ASL-19/use-overflow-state.git"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"sideEffects": false,
"scripts": {
"api-extractor-check": "api-extractor run --local --verbose",
"api-extractor-update": "api-extractor run --local --verbose && api-documenter markdown --input-folder ./api-extractor --output-folder ./docs",
"build-lint-test": "npm-run-all -l -p tsc -s lint-test",
"rm-dist": "rm -rf dist/*",
"dev": "npm-run-all -l -s package-changed -p tsc-watch",
"dev-build-update": "npm-run-all -l -p package-changed rm-dist -s tsc api-extractor-update",
"dev-lint-test": "run-s package-changed lint-test",
"eslint-check": "eslint . --ext='js,ts,tsx'",
"eslint-fix": "eslint . --ext='js,ts,tsx' --fix",
"lint-test": "run-p -l api-extractor-check eslint-check prettier-check tsc-check",
"package-changed": "package-changed",
"prepublishOnly": "run-s rm-dist build-lint-test",
"prettier-check": "prettier --config --check .",
"prettier-fix": "prettier --config --write .",
"npm-check-updates": "npm-check-updates",
"tsc": "tsc --project tsconfig-dist.json",
"tsc-watch": "tsc --project tsconfig-dist.json --watch",
"tsc-check": "tsc --project tsconfig-dist.json --noEmit"
},
"dependencies": {
"detect-passive-events": "^2.0.3",
"normalize-scroll-left": "^0.2.1"
},
"devDependencies": {
"@asl-19/eslint-config": "^0.9.0",
"@microsoft/api-documenter": "^7.26.31",
"@microsoft/api-extractor": "^7.52.10",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"eslint": "^9.33.0",
"npm-run-all": "^4.1.5",
"package-changed": "^3.0.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
}
}